Code Monkey home page Code Monkey logo

gdk-unity-package's People

Contributors

edwarduwms avatar jgalvan avatar mike-copley-atg avatar payzer avatar rakhad avatar tculotta avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

gdk-unity-package's Issues

0x87DD0005 Can’t login to Xbox Live

Completely stuck...

I've imported the unity GDK package https://github.com/microsoft/gdk-unity-package/releases

Installed GDK https://github.com/microsoft/GDK/releases/tag/June_2021_Update_4

Reserved my app

Setup XBox live services for desktop only

Granted myself access to the test
environment

Published the test environment

Associated my unity project with the store

Switched to the sandbox ( Shows an error, but when I launch apps, It shows I'm in the sandbox )

Launched Apps and shows I'm in the sandbox

Set Windows to developer mode in settings

Can't login... screenshots attached..
5A15CFE7-7D2B-4873-9FEB-59642D9EA67C

Got an email saying that my app has access to my account. Says unverified. Attached screenshot.
3CD72FB1-636B-41A7-A9DF-149C48426F02

Play nice with multi-platform development (errors with GDK package on macOS)

When importing the package on macOS, I'm getting following errors when it tries to access the registry through Window-specific APIs.

I'm aware GDK is not supported on macOS but our projects targets multiple platforms and needs to run on macOS. The GDK package should check if it's not running in the Windows Unity editor and disable everything that relies on Windows-specific APIs and functionality.

Errors in macOS Unity editor
Failed to get key: Advapi32.dll assembly:<unknown assembly> type:<unknown type> member:(null)
UnityEngine.Debug:LogError (object)
Microsoft.GameCore.Utilities.GdkUtilities/RegUtil:GetRegKey (uint,string,string) (at Assets/GDK-Tools/Source/Utilities/GdkUtilities.cs:236)
Microsoft.GameCore.Utilities.GdkUtilities:get_GdkVersion () (at Assets/GDK-Tools/Source/Utilities/GdkUtilities.cs:37)
Microsoft.GameCore.Utilities.GdkUtilities:PullGdkDlls () (at Assets/GDK-Tools/Source/Utilities/GdkUtilities.cs:152)
Microsoft.GameCore.Tools.GdkPlugin:.cctor () (at Assets/GDK-Tools/Source/Editor/GdkPlugin.cs:20)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (at /Users/bokken/build/output/unity/unity/Editor/Mono/EditorAssemblies.cs:126)
System.ArgumentOutOfRangeException: Index and length must refer to a location within the string.
Parameter name: length
  at System.String.Substring (System.Int32 startIndex, System.Int32 length) [0x0004c] in <b476499a37ba4db68de311f404f49770>:0 
  at Microsoft.GameCore.Utilities.GdkUtilities.PullGdkDlls () [0x0002f] in Assets/GDK-Tools/Source/Utilities/GdkUtilities.cs:157 
  at Microsoft.GameCore.Tools.GdkPlugin..cctor () [0x00000] in Assets/GDK-Tools/Source/Editor/GdkPlugin.cs:20 
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[]) (at /Users/bokken/build/output/unity/unity/Editor/Mono/EditorAssemblies.cs:134)
No MicrosoftGame.Config found. Please re-import this plugin.
UnityEngine.Debug:LogError (object)
Microsoft.GameCore.Utilities.GdkUtilities:get_GameConfigPath () (at Assets/GDK-Tools/Source/Utilities/GdkUtilities.cs:131)
Microsoft.Xbox.Gdk:OnValidate () (at Assets/GDK-Tools/Source/Scripts/Gdk.cs:149)

XLaunchNewGame equivalent

We want to launch a new application and on xbox we can use XLaunchNewGame, but it's missing in the SDK.

What's the right approach here. Should we still be using XLaunchNewGame or should we just launch the other application using regular win32 processes?

I've tried adding a mapping for XLaunchNewGame, but it just seems to close the game and do nothing else

XGameSaveWrapper multiple calls to callback in one method

If you look at XGameSaveWrapper.Load, the callback can be first made if it fails to create save container and then against after it attempts to read blobs. This makes little sense to me and I think is poor practice. The callback should only be called once when the method has completed and not potentially multiple times. Unless there is some reasoning for this, I think this should be resolved to save users future headaches if they are awaiting the callback via TaskCompletionSource or other means.

XblMultiplayerActivityUpdateRecentPlayers not showing up on gamebar

We're working with MPA and having no problem with creating, inviting, joining or deleting it.
But, when we try to update recent player on win 64 version,
the process finished up with 0 (success) code, but it never show up on gamebar.
We tried to flush it using XblMultiplayerActivityFlushRecentPlayersAsync, it returned success state but nothing changed.

this is the code sniplet we've used
foreach(Player player in players){ XblMultiplayerActivityRecentPlayerUpdate recentPlayer = new XblMultiplayerActivityRecentPlayerUpdate() { Xuid = ulong.Parse(player.xuid), EncounterType = XblMultiplayerActivityEncounterType.Default }; playerUpdates.Add(recentPlayer); }

if (playerUpdates.Count > 0) { int result = XblMultiplayerActivityUpdateRecentPlayers(_xblContextHandle, playerUpdates.ToArray()); // result showing succeed here XblMultiplayerActivityFlushRecentPlayersAsync(_xblContextHandle, result => { // return succeed here }); }

XblAchievementsManager API missing? Event-based achievements

I cannot find XblAchievementsManager API in the SDK at all. Is this something that will be added in the future?

In the meantime, is there a means to register to event-based achievement unlocks? Currently, I am just periodically checking all of the achievements to see if they have completed but surely there must be a way to subscribe to the telemetry callback when an event-based achievement is unlocked?

GDK Unity Package on XBOX

I'm evaluating the Microsoft Unity GDK and Unity's own wrapper. My understanding is that the Unity GDK wrapper is not approved for use on PCs. I'm trying to find one ring to rule them all...

May I use the "Microsoft GDK for PCs" on XBOX and Windows Store Apps? Thank you for fielding my questions!

Missing API XGameUiShowMultiplayerActivityGameInviteAsync

Like some of the other newer APIs mentioned in other issues, it seems the XGameUiShowMultiplayerActivityGameInviteAsync is also missing, which is needed for using Multiplayer Activity (MPA) ? The older invite functionality, XGameUiShowSendGameInviteAsync, does exist.

New samples

Could there be some extra examples introduced for more more common usages? There is a XR64 requirement that states that joinable game sessions need to be accessible from the game bar. Could we have some more common functionalities introduced to the GDK prefab so that we can avoid accessing any of the XGamingRuntime functionality to make this more simple/straightforward for unity developers? Any amount of higher-level functionality is greatly appreciated.

test account login problem

  1. I associate the project to the partner center.
  2. created a sandbox and a test account for the sandbox.
  3. switched the sandbox to windows
  4. I can log in to the xbox app using a test account.
  5. opened the login scene.
  6. launched a scene in the unit where the xbox application login window opens.
  7. I enter the login password from the test account and get an error in the xbox login window: The account you are trying to sign in with is not provisioned for this environment. The application may not be configured correctly

what could be the problem?

Sign in. failed. Error code: hr=0x89245115

Screenshot 2023-12-05 002227

I installed GDK June Update 0 then i tried June Update 2 both the same errors.

I associated my game with the store and added my SCID to the GDK Helper, i updated the editor config, and i build a test package. i've tried both my test sanboxes (which my game is on) and retail sandbox. i cannot login to my game in unity or in the loose or installed package at all

i can sign into the test accounts in the xbox app.

the sign in dialog does not even come up.

Is there a specfic version of GDK I should be using? i am a ID@XBOX Dev so, i have access to both the Public GDK and Restricted GDK but, I'm developing my game is for PC GDK first then i'll deal with the Console Side at a later date.

Could not retrieve sandboxes

I got an error in the "Switch PC Sandbox" window:
"Could not retrieve sandboxes. Have you run the store association wizard?" (Red text below the "Switch Sandbox" button).

I logged in a user that is configured at this sandbox in the Microsoft Store and Xbox app. But I can't login in my game. I got this message: "Error: The account you're attempting to sign in with isn't provisioned for this environment. Your application may not be configured correctly".

I have already build the Xbox One and Xbox Scarlett builds with the same sandbox correctly but can't do it for PC. I run the store association wizard successfully. And I did a Build and Run from the GDK menu.

My unity version is 2021.3.20f1

Save games last only during game

I use gamesavehelper from this gdk-unity-package GameObject.Find("GdkHelper").GetComponent()._gameSaveHelper.Save. And saving and loading works okay during game. I call load method to load all files using gamesavehelper.load on start of game, But after quiting game and launching game again, there aren't any saves loaded, why?

I use Save and Load from XGameSaveWrapper.

ProjectName_BackUpThisFolder_ButDontShipItWithYourGame included in package

A directory called ProjectName_BackUpThisFolder_ButDontShipItWithYourGame is generated inside build folder automatically by unity. Inside there are all pdbs from il2cpp project. (here is unity doc https://docs.unity3d.com/Manual/WindowsPlayerIL2CPPBuildProducedFiles.html?_ga=2.74103953.2055947039.1598316643-1897641508.1594776991)

The default build script should move this directory, before creating layout.xml file (or ignore this dir). Now layout.xml includes those files in package.

Running in Unity Editor doesn't work for specific APIs (Packages and Game Invite)

Package and system info

  • Gdk-unity-package: 2207
  • Gdk: GDK-June_2021_Update_3
  • Unity: 5.4.0.f1
  • Windows: 10.0.19044 Build 19044
  • Game is associated to a live title but switched to Sandbox

Disclaimer

I'm well aware the minimum supported Unity version of this package is 2017.x, but the runtime/built game is working fine with this package.
Our game is currently live with the Login, Storage, Achievements and Rich Presence features successfully implemented.

Short description (TLDR)

GDK Unity Editor logic seems to work fine for the API's that cover Login, Storage and even Achievements, but fails for the Packages and Game Invite API's. These features do work when we make a standalone build and test it there.

Description

We're currently implemented DLCs using the Packages API and in order to iterate more quickly, I figured I'd upgrade to the latest 2207 package which supports Unity Editor playthroughs.

After updating the MicrosoftGame.config file with the latest requirements, I ran the game in the Unity Editor.
I could see basic initialization working and features like login, storage and achievements were working.

However, when trying to leverage the Packages API to retrieve a list of packages(SDK.XPackageEnumeratePackages(...)), it returns a non-successful HRESULT: -2147023728 (0x80070490). The error itself can't be found on the MS GDK documentation website. After googling a bit, it seems like the error is something like "Package not found".

Similarly, registering for game invite events also returns an error: -2147009196 (0x80073D54). Like the packages error, this one was also not in the MS documentation website. Some Google search results seem to match the error description "The process has no package identity".

I did some digging in the inner workings of the xgameruntime (cough disassembly), it occurred to me that it might be querying GetCallingProcessPackageFullName or similar, which could return that -2147009196 error code.
I'm not sure if that is the case, but if it is, it might be querying the Windows Store with the running process (Unity.exe), which isn't the package we're looking for. πŸ‘‹

Question
Have you guys have tested and confirmed the Packages and Game Invite API's working in the editor?
And perhaps other API's that rely on the active process handle?

I realize Editor run-throughs are not the highest priority but having a very large project, it does save a ton of time not having to spend to creating builds.

Short summary API methods that we used

Here's a short summary of methods that don't work and the ones that do;

Not working;

SDK.XPackageEnumeratePackages returns: -2147023728 (0x80070490)
SDK.XGameInviteRegisterForEvent returns: -2147009196 (0x80073D54)

Working;

SDK.XGameRuntimeInitialize (runtime init)
SDK.XBL.XblInitialize (xbox live init)
SDK.XUserRegisterForChangeEvent (login)
SDK.XGameSaveInitializeProviderAsync (storage)
SDK.XBL.XblAchievementsUpdateAchievementAsync (achievements)

Failed Certification because of these failures in the validator log

Hi,
I just failed Certification because of these:
`Failures
File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\GameAssembly.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp10.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp11.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp12.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp13.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp14.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp15.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp16.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp17.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp18.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp19.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp20.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp21.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp22.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp23.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp24.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp25.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp26.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp27.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp28.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp29.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp30.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp31.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp32.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp33.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp34.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp35.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp36.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp37.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp38.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp39.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp4.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp40.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp5.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp6.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp7.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp8.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp9.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\CFXRDemo.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\CFXRDemo_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\CFXRDemo_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\CFXRRuntime.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\CFXRRuntime_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\CFXRRuntime_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Cinemachine.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Cinemachine1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Cinemachine2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Cinemachine3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Cinemachine_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Cinemachine_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\clipper_library.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\clipper_library1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\clipper_library_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\clipper_library_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods10.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods11.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods4.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods5.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods6.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods7.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods8.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\GenericMethods9.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics10.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics11.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics12.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics13.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics14.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics15.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics16.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics17.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics18.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics19.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics20.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics21.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics22.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics23.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics24.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics25.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics26.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics27.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics28.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics29.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics30.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics31.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics32.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics33.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics34.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics35.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics36.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics37.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics38.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics4.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics5.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics6.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics7.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics8.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Generics9.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppCCalculateFieldValues.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppCCalculateFieldValues1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppCCalculateFieldValues2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppCCalculateTypeValues.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppCCalculateTypeValues1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppCCFieldValuesTable.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppCCTypeValuesTable.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppCodeRegistration.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericAdjustorThunkTable.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericClassTable.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions10.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions11.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions12.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions13.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions14.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions15.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions16.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions17.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions18.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions19.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions20.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions21.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions22.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions23.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions24.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions25.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions26.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions27.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions28.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions29.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions30.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions31.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions32.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions33.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions34.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions35.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions36.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions37.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions38.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions39.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions4.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions40.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions41.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions42.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions43.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions44.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions45.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions46.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions47.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions48.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions49.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions5.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions50.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions51.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions52.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions53.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions54.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions55.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions56.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions57.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions58.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions59.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions6.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions60.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions61.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions62.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions63.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions64.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions65.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions66.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions67.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions68.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions69.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions7.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions70.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions71.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions72.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions73.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions74.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions75.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions76.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions77.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions78.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions79.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions8.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions80.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions81.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions82.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions83.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericComDefinitions9.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericInstDefinitions.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericMethodDefinitions.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericMethodPointerTable.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppGenericMethodTable.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppInteropDataTable.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppInvokerTable.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppMetadataRegistration.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppMetadataUsage.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppReversePInvokeWrapperTable.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppRgctxTable.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Il2CppTypeDefinitions.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Mono.Security.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Mono.Security_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Mono.Security_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib10.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib11.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib12.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib13.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib14.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib15.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib16.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib17.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib18.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib4.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib5.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib6.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib7.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib8.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib9.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\mscorlib_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Configuration.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Configuration_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Configuration_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Core.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Core_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Core_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Xml.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Xml_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System.Xml_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\System_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.2D.Animation.Runtime.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.2D.Animation.Runtime_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.2D.Animation.Runtime_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Burst.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Burst.Unsafe.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Burst.Unsafe_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Burst.Unsafe_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Burst_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Burst_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Collections.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Collections.LowLevel.ILSupport.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Collections.LowLevel.ILSupport_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Collections.LowLevel.ILSupport_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Collections_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Collections_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem10.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem4.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem5.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem6.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem7.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem8.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem9.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InputSystem_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InternalAPIEngineBridge.001.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InternalAPIEngineBridge.001_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.InternalAPIEngineBridge.001_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Mathematics.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Mathematics_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Mathematics_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.RenderPipelines.Core.Runtime.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.RenderPipelines.Core.Runtime1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.RenderPipelines.Core.Runtime2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.RenderPipelines.Core.Runtime_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.RenderPipelines.Core.Runtime_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.TextMeshPro.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.TextMeshPro1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.TextMeshPro2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.TextMeshPro3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.TextMeshPro4.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.TextMeshPro5.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.TextMeshPro_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.TextMeshPro_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Timeline.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Timeline_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Unity.Timeline_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AIModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AIModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AIModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AndroidJNIModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AndroidJNIModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AndroidJNIModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AnimationModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AnimationModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AnimationModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AssetBundleModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AssetBundleModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AssetBundleModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AudioModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AudioModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.AudioModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.CoreModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.CoreModule1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.CoreModule2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.CoreModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.CoreModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.DirectorModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.DirectorModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.DirectorModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.GridModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.GridModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.GridModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.IMGUIModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.IMGUIModule1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.IMGUIModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.IMGUIModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.InputLegacyModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.InputLegacyModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.InputLegacyModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.InputModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.InputModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.InputModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.JSONSerializeModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.JSONSerializeModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.JSONSerializeModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.ParticleSystemModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.ParticleSystemModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.ParticleSystemModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.Physics2DModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.Physics2DModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.Physics2DModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.PhysicsModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.PhysicsModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.PhysicsModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SharedInternalsModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SharedInternalsModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SharedInternalsModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SpriteMaskModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SpriteMaskModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SpriteMaskModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SpriteShapeModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SpriteShapeModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SpriteShapeModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SubsystemsModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SubsystemsModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.SubsystemsModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TerrainModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TerrainModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TerrainModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TextCoreModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TextCoreModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TextCoreModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TextRenderingModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TextRenderingModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TextRenderingModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TilemapModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TilemapModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.TilemapModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UI.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UI1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UI2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UI3.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIElementsModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIElementsModule1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIElementsModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIElementsModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIElementsNativeModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIElementsNativeModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIElementsNativeModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UIModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UI_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UI_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityAnalyticsModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityAnalyticsModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityAnalyticsModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityWebRequestAudioModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityWebRequestAudioModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityWebRequestAudioModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityWebRequestModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityWebRequestModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.UnityWebRequestModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VFXModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VFXModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VFXModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VideoModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VideoModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VideoModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VRModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VRModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.VRModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.XRModule.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.XRModule_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine.XRModule_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnityEngine_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\UnresolvedVirtualCallStubs.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\XGamingRuntime.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\XGamingRuntime1.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\XGamingRuntime2.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\XGamingRuntime_Attr.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\XGamingRuntime_CodeGen.c

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_codegen.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_debugger.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_gc.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_icalls.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_metadata.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_mono.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_os.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_utils.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_vm-utils.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\lumpedcpp\Lump_libil2cpp_vm.cpp

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Assembly-CSharp.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\CFXRDemo.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\CFXRRuntime.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Cinemachine.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.2D.Animation.Runtime.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.Burst.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.Collections.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.InputSystem.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.InternalAPIEngineBridge.001.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.Mathematics.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.RenderPipelines.Core.Runtime.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.TextMeshPro.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\Unity.Timeline.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.AIModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.AndroidJNIModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.AnimationModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.AssetBundleModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.AudioModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.CoreModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.DirectorModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.GridModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.IMGUIModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.InputLegacyModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.InputModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.JSONSerializeModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.ParticleSystemModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.Physics2DModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.PhysicsModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.SharedInternalsModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.SpriteMaskModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.SpriteShapeModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.SubsystemsModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.TerrainModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.TextCoreModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.TextRenderingModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.TilemapModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.UI.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.UIElementsModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.UIElementsNativeModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.UIModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.UnityAnalyticsModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.UnityWebRequestAudioModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.UnityWebRequestModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.VFXModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.VideoModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.VRModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\UnityEngine.XRModule.pdb

File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\Managed\XGamingRuntime.pdb`

Can you please tell me how to get rid of those? A quick fix?
I am near release and I need fast reply.
thanks

XblSocialRelationshipResultGetRelationships returns array of same items.

When you call XblSocialRelationshipResultGetRelationships from XBLSocial, you will get an array of elements, where every single element is the same as first one.
I belive there is an issue here:
Original code

if (HR.SUCCEEDED(result))
                    {
                        relationships = new XblSocialRelationship[count.ToInt32()];
                        var interopPtr = relationshipsPtr;

                        for (var i = 0; i < count.ToInt32(); i++)
                        {
                            relationships[i] = new XblSocialRelationship();
                            relationships[i].xboxUserId = interopPtr->xboxUserId;
                            relationships[i].isFavorite = interopPtr->isFavorite;
                            relationships[i].isFollowingCaller = interopPtr->isFollowingCaller;
                            relationships[i].socialNetworks = new string[interopPtr->socialNetworksCount.ToInt32()];

                            var socialNetworksPtr = interopPtr->socialNetworks;

                            for (var j = 0; j < interopPtr->socialNetworksCount.ToInt32(); j++)
                            {
                                relationships[i].socialNetworks[j] =
                                    Converters.NullTerminatedBytePointerToString((byte*)*socialNetworksPtr);
                                socialNetworksPtr++;
                            }
                        }
                    }

And should be:

 if (HR.SUCCEEDED(result))
                    {
                        relationships = new XblSocialRelationship[count.ToInt32()];
                        
                        for (var i = 0; i < count.ToInt32(); i++)
                        {
                            var interopPtr = relationshipsPtr[i];
                            relationships[i] = new XblSocialRelationship();
                            relationships[i].xboxUserId = interopPtr.xboxUserId;
                            relationships[i].isFavorite = interopPtr.isFavorite;
                            relationships[i].isFollowingCaller = interopPtr.isFollowingCaller;
                            relationships[i].socialNetworks = new string[interopPtr.socialNetworksCount.ToInt32()];

                            var socialNetworksPtr = interopPtr.socialNetworks;

                            for (var j = 0; j < interopPtr.socialNetworksCount.ToInt32(); j++)
                            {
                                relationships[i].socialNetworks[j] =
                                    Converters.NullTerminatedBytePointerToString((byte*)*socialNetworksPtr);
                                socialNetworksPtr++;
                            }
                        }
                    }

Missing Function SDK.XPackageMountWithUiAsync

The Function "SDK.XPackageMount" stopped working after we updated to GDK June 2022. It returns an HResult "80004001" when used.
According to the documentation the XPackageMount function is deprecated and should be replaced by "XPackageMountWithUiAsync" which is not implemented in the latest 2207 package.

Why isn't this a unity plugin/package?

Hi there, I was in the process of importing/extracting this unitypackage but noticed it was importing directly into assets. Would it be possible to upgrade this so that it works like most modern unity packages using the package manager and imports into the packages folder? This results in a much cleaner and more maintainable deployment. I've already done the effort locally and will probably fork this in the meantime.

Thanks,

Rami

Microsoft Cert failed my PC Desktop MICROSOFT_GAME_CORE game

I am using:
Unity 2021.13.3
Windows 10 (latest update)
Windows 10 SDK 10.0.19041.0
March 2022 GDKX (10.0.22000.3160
Latest Unity Package: May 2022.

I have completed my game and packed it for release like you say: Checked "Create package to upload to the store". My game failed because of these failures in the validator log:

"File with suspect extension. Ensure this file is intentionally included: C:\PROJECTS\Unity\Crazy_Athletics\RUN\XboxPC\Win32\Crazy Athletics - Summer Sports and Games_BackUpThisFolder_ButDontShipItWithYourGame\il2cppOutput\Assembly-CSharp20.cpp"

It includes the folder "BackUpThisFolder_ButDontShipItWithYourGame" and folder and folder "BurstDebugInformation_DoNotShip".
Can you please fix it and dont include these folders?

Trying PC Standalone with GDK core

Hi,

I have Unity 2021.1.23 with June GDKX and correct plugin.
I implemented the example to log in with the correct sandbox and settings and I get an error when its logging in:
WindowsPlayer Sign in. failed. Error code: hr=0x89245110
This means E_GAMEUSER_NO_PACKAGE_IDENTITY "A package identity must be configured."

My GDK-Tools\ProjectMetadata\MicrosoftGame.Config file is correctly set up with the correct package identity.
My PC is set up developer PC.
What more can I try?
thanks

No save file created

I use this gdk save and load system, but no save file is created in C:\Users\FESA\AppData\Local\Packages\gamename in any subfolder like appdata, ac,localcache,localstate etc.
Only here:
C:\Users\FESA\AppData\Local\Packages\gamename\SystemAppData\wgs\0009FFEFC56CBB62_4444444446C4080CC is created and updated file container.index.

I use this like this:
GameObject.Find("GdkHelper").GetComponent<Gdk>()._gameSaveHelper = new XGameSaveWrapper();
GameObject.Find("GdkHelper").GetComponent<Gdk>()._gameSaveHelper.InitializeAsync(GameObject.Find("GdkHelper").GetComponent<Gdk>()._userHandle, GameObject.Find("GdkHelper").GetComponent<Gdk>().scid, GameObject.Find("GdkHelper").GetComponent<Gdk>().XGameSaveInitializeCompleted);

GameObject.Find("GdkHelper").GetComponent<Gdk>()._gameSaveHelper.Save("container", m_files[i].name, m_files[i].data);
Where I pass my file's name and data.

Support for RealTimeActivity XblUserStatisticsTrackStatistics?

Hi!

We don't seem to find a way to access the XblUserStatisticsTrackStatistics feature in the current package, we need this to be able to know when a leaderboard has actually been updated on the server side as it appears it can take some time.

Is this already implemented? If yes, how do we access it?

If no, then what is the guestimate when it will/could be added?

Link to GDK should point to aka.ms/gdk or aka.ms/gdkdl should be redirected to https://github.com/microsoft/GDK/releases

Currently in the README.md it points to aka.ms/gdkdl, but with the Windows 11 announcement today the GDK isn't restricted to partners and can be obtained from aka.ms/gdk, or aka.ms/gdkdl should be pointed to https://github.com/microsoft/GDK/releases instead so that the most recent version is consistent. The latter fix is probably a better way to address it so all stale links of aka.ms/gdkdl are updated, but it would require tracking down the owner of the alias and I'm not sure how someone externally could file a bug against that...

Cloud saves

I use sample from this project class GDK and achievements, and loading and saving works okay using this gdk class methods. But cloud saving doesn't work, like when I launch game on same account on different computer, saves aren't synced from cloud. Why? I load blobs to read save data, so if blobs saves would sync from cloud all would be okay, but blobs don't sync they remain local, why? I use Apps manager - Windows Device Portal for testing. In cloud save example in gdk pc is script GameSaveSampleLogic.cs but there is only save and load of blob save, which i have done, so you dont have do anything else in code besides save and load blob to use cloud saves.

GDK (Unity) Associate with Microsoft Store Not Working

I'm following Microsoft's tutorial (https://developer.microsoft.com/en-us/games/xbox/docs/gdk/gdk-unity-end-to-end-guide) for Unity GDK setup instructions. This is a Microsoft tool.

I am attempting to associate my game with the Microsoft Store.

GDK -> Associate with the Microsoft Store -> Assocaite with the Microsoft Store -> Next -> Sign In

Screenshot: https://i.imgur.com/S2oaLJf.png

The sign-in link doesn't do anything. I can confirm opening a browser window from this workflow does work, as there is a previous link to open a help document and it works. It is the sign-in link that won't open.

Unable to build XGamingRuntimeThunks from source (Win10-VS2017)

Hey All,

I am trying to build this project for C# (without Unity integration) per instructions given by Microsoft at:
https://learn.microsoft.com/en-us/gaming/gdk/_content/gc/get-started-with-pc-dev/get-started-with-custom-engine/gc-get-started-with-custom-engine-pc-csharp

I have installed VS2017 with (I believe) all necessary dependencies. I am able to build TestGame and XGamingRuntime after removing code within TestGame (earnAchievementButton_Click references a function with an argument count mismatch) and after commenting out "using Unity" per the linked instructions above.

I am never able to build the thunks project as I always get the error:

"C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Microsoft.Cpp.InvalidPlatform.Targets(21,7) error MSB8006: The Platform for project 'XGamingRuntimeThunks.vcxproj' is invalid. Platform='Gaming.Desktop.x64'. This error may also appear..." yadda yadda

Is something missing from my environment that would enable this platform? I have already previously installed GDK and the given Microsoft instructions don't add any other dependencies so I am at a loss. Any help would greatly be appreciated!

Make Build Process Automation Friendlier

This is more of a request than a bug/issue, but from what I'm seeing in order to automate this process via a build script I need to basically rewrite the entire GdkBuildEditorWindow. I'd love it if the Build method could be static or moved into EditorHelpers so I could more easily call this from my automated build scripts. Something like a PreBuild() and PostBuild() would be helpful. Thanks!

Plugin fails to load DLLs/Tools for public GDK installs

For anyone receiving this message "Could not find the GDK DLLs. Make sure you have the Microsoft GDK installed.": we've found that the registry keys differ for the GDK-only install (i.e. installed from GitHub). A fix will be included in the next release, but in the meantime, you can fix this yourself by changing the three calls to GetRegKey() with "InstallPath" to use "GRDKInstallPath" instead in GdkUtilities.cs

Multiple Savefiles

Is there a way to modify the cloadsave script so that it can save to multiple savefiles?
No matter what i do it only does it to one save file.

Please note that I'm not super expert when it comes to programing, if anyone has a modified script and could post them here that would really help.

XGameUiShowMultiplayerActivityGameInviteAsync usage

Hi, in the latest version XGameUiShowMultiplayerActivityGameInviteAsync is finally exposed but how are we supposed to use it?

It takes an XAsyncBlock but I cannot figure how I am supposed to create one. Pretty much anything in the SDK uses XAsyncBlockPtr and not XAsyncBlock. So I am a bit confused how am I supposed to use that function.

at first glance AsyncHelpers.WrapAsyncBlock looked interesting but there is no way to access the underlying XAsyncBlock.
Not only that They are not part of the same Assembly XGamingRuntime.XAsyncBlock seems to conflict with XGamingRuntime.Interopt.XAsyncBlock.

I will try to work around by modifying the plugin but it would be nice if it could be done by more knowledgeable people than me.

Thank you for your help

Feedback - Not Good

The Unity Sign-In sample is unfinished or not working. I am wondering if the developer has not thoroughly tested this code outside of their development sandbox.

Here are the immediate issues:

DOCUMENTATION

Without working documentation links (shared below), these samples are missing context and are not helpful to edit or run.

  1. Link https://aka.ms/GDK_MSGC is broken. It is referenced in MicrosoftGame.Config.
  2. Link https://developer.microsoft.com/en-us/games/xbox/docs/gdk/gc-get-started-with-unity-pc-toc does not work.

BUGS

  1. The sign-in example fails with null reference exceptions because it uses static variables that are not reinitialized by Unity. This is due to the app domain refresh model Unity uses -- static variables won't be reinitialized.

  2. Error code handling fails in Sign In example because it references an error dictionary lookup that is null. It is only initiated under certain scenarios, and it contains only one error which isn't very helpful.

  3. The Associate with Microsoft Store functionality seems to work, but then I get this error code on initialization of the GDK.

XGRInterop.XStoreCreateContext(user == null ? new Interop.XUserHandle() : user.InteropHandle, out context);
-"89240100"(E_GAMERUNTIME_NOT_INITIALIZED).

This error happens on initiation -- If there could be identification of common errors or documentation this would make it easier for end users to troubleshoot.

I'd like to create PRs to fix up the sign-in sample but there isn't publicly available guidance on how this should theoretically work.

Have converted this to a UPM package for my own use and have "some thoughts"...

Hi

Firstly, thanks so much for making this!

The process of getting it all working and so forth has for the most part been relatively painless - certainly all the code in the GDK-Tools folder to handle copying about GDK .dlls, moving the various package files about for builds etc. would have been a nightmare to write from scratch.

That said, the biggest issue (other than the finniky behaviour of the GDK dev environment on desktop, which is nothing to do with you!) has been the fact that it's supplied as a .unitypackage rather than a proper UPM package.

Speaking from a decade's worth of multiplatform Unity console / PC development, platform specific APIs which live inside the Assets folder are a nightmare, not only do they pollute the game's namespaces / assembly but being inside the Unity project's Assets folder encourages data storage / integration idioms which tend not to help when maintaining a project supporting multiple platforms.

In fact, it's so much better to have UPM packages that I've invested significant time and effort in tools to convert the other platform specific Unity APIs supplied as .unitypackage into UPM packages...

I note that there's already an issue (#63) re: supplying this as a UPM package and the reason given for not doing that was "we support down to unity 2017".

Unity don't support versions of Unity older than 2 years so I would like suggest that it would be a good idea to move this over to a UPM package format - on top of that it's perfectly possible to just dump a UPM package into the Assets folder and it should work the same as if it was imported via Unity's Package Manager.

I totally get that setting up a project as a package looks daunting & faffy - I can recommend this MIT licensed repo which makes it easy to export UPM packages from code in your Assets folder: https://github.com/PixelWizards/com.pixelwizards.package-utils
(also the fixes for it I suggest here: PixelWizards/com.pixelwizards.package-utils#1).
I use a modified version of this to make all my UPM packages.

Generally making a UPM package is trivially easy, but in the case of this package is has been significantly more involved.

This is a list of the issues I've had to solve & solutions:

  • file paths used in tools are hard coded relative to [projectRoot]\Assets
    • I fixed this so GdkUtilities.RootPluginPath finds the parent folder of GDK-APIs
    • the code I use auto-detects if it's in a UPM Package or the Assets folder too
  • samples and sample code are in the GDK-Tools folder along with code needed to use the package
    • no fix for this, I've just deleted the samples locally
    • UPM packages have a nice mechanism for distributing & installing samples
  • not all the code in the package is in assemblies
    • in the Assets directory any directory called Editor automatically gets put into the Assembly-CSharp-Editor assembly
    • in a package you need to manually add an assembly definition, set it up to be editor only, and have the correct references etc.
  • the XBL scid used by the entire project is assumed to be in a prefab as a serialised property of a MonoBehaviour and / or in the MicrosoftGame.config
    • I've actually yet to solve this...
    • the MicrosoftGame.config also stores loads of weird development specific info like sandbox Ids and the scid (duplicating the info in the prefab...)
    • I'm not sure if this is usual when building GDK games in Visual Studio with C++ etc. but it seems really weird to me
    • I'm currently planning to put all the XBL ids and development info into ScriptableObject assets
    • to access in game you have a bunch of options:
    • add the asset(s) as serialised properties of a scene object
    • store in the Resources folder
    • put it in the Player's preloaded assets https://docs.unity3d.com/ScriptReference/PlayerSettings.GetPreloadedAssets.html
    • I'll also be using this asset to generate the MicrosoftGame.config for builds
    • which means it's easy to write build scripts which modify the MicrosoftGame.config
    • (though will likely also provide a manual override MicrosoftGame.config filepath (useful for submissions etc.)
    • note: that for other platforms platform specific settings are typically stored in the ProjectSettings folder (cf. the way the Unity GDK for consoles Unity Add-on does it).

There's probably other stuff I've forgotten but I'd be more than happy to offer advice / help out with this if you need it.

Thanks!

Package Errors using GDK

Hello. This is a great plugin I hope the issue I see is just a config issue.

When I select Build and include package for MS store (the check box)
It builds ok, I can run the app in the win32 folder. But the manifest xml file that is produced contains errors.

I was able to I believe fix all those up. But the GDK in unity create this file XboxDeveloperExperienceTe.GamePassSampleGame_1.0.0.0_x64__pmsd8ndztetqc.msixvc and when I try to publish my app in the partner portal it says
The PublisherDisplayName element in the app manifest of XboxDeveloperExperienceTe.GamePassSampleGame_1.0.0.0_x64__pmsd8ndztetqc.msixvc is Xbox Developer Experience Team, which doesn't match your publisher display name

I Used the GDK Tool standalone as well and create what I think is a proper microsoftGame.config

How can you edit the msixvc properties? or where are they derived from?

[PROBLEM] UI Scaling on GDK -> Associate with the Microsoft Store

Hello!

Me and my team have recently joined ID@Xbox and are currently working on porting our game to the Microsoft Store using the GameCore Development Kit.

However, when we try to associate the title with the Microsoft Store, we face a scaling problem with the windows that opens. I will put our window vs what should appear.

Anyone know how to solve this Have we goofed anywhere?

problem
how-it-should-look-like

Thanks in advance!

Impossible to Clear rich presence

When the title exits, it seems impossible to clear the rich presence status so XBox app shows the last status forever (or at least a very long time). I tried to pass null or empty strings but that did not help and I can't find a dedicated clear API, releasing the GDK does not help either.

You must provide a package that supports each selected device family

Hi,
I built a msixvc package with the GDK and its Successful,but when i upload it on the Microsoft Partner Center there is an error:You must provide a package that supports each selected device family (or uncheck the box for unsupported device families). Note that targeting the Xbox device family requires a neutral or x64 package.
i'm pretty sure that i only toggle the Desktop.Here is my build setting

1689605145921

Build settings can cause release build with il2cpp crash at startup

We've had an elusive crash at startup happen, only for our gamecore release builds and only for il2cpp - development builds were fine & threw no exception, mono backend was OK too.

After some searching it seems this is caused by the logic in ImportWin32BuildSettings. There, the BuildOptions are built from the EditorBuildSettings, copying over flag by flag, removing setting of these flags fixes our issue.

My working theory is that this method should NOT copy over certain development only settings (such as AllowDebugging, WaitForPlayerConnection etc, unless the Development buildoption is checked. In the UI these settings are greyed out, but their values are still set. [Alternatively there might be an issue with one of the individual flags - eg enableHeadlessMode is obsolete.]

TestGame doesn't compile build

The TestGame project doesn't compile build when following the instructions detailed here.

There are three errors after building XGamingRuntimeThunks and XGamingRuntime.

Severity	Code	Description	Project	File	Line	Suppression State
Error	CS0103	The name 'defaultQueue' does not exist in the current context	XGamingRuntime	C:\Working\code\gdk-unity-package\Package\Assets\GDK-APIs\Runtime\Source\XBL\Achievements\XblAchievements.cs	58	Active
Severity	Code	Description	Project	File	Line	Suppression State
Error	CS0117	'SDK' does not contain a definition for 'XTaskQueueDispatch'	TestGame	C:\Working\code\gdk-unity-package\Tools\XGamingRuntimeSDK\TestGame\XboxLiveForm.cs	107	Active
Severity	Code	Description	Project	File	Line	Suppression State
Error	CS1501	No overload for method 'XblAchievementsUpdateAchievementAsync' takes 7 arguments	TestGame	C:\Working\code\gdk-unity-package\Tools\XGamingRuntimeSDK\TestGame\XboxLiveForm.cs	188	Active

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.