Project filesystem changes

This commit is contained in:
NSDeathman 2026-03-15 22:39:26 +03:00
parent ef9aca471b
commit a9d27ad8f4
80 changed files with 103 additions and 398 deletions

View file

@ -6,8 +6,6 @@ param(
Write-Host "Post-build script started. Output Directory: $OutDir, Project Directory: $ProjectDir"
$directories = @(
"music",
"Windows64\GameHDD",
"Common\Media",
"Common\res",
"Common\Trial",
@ -20,14 +18,12 @@ foreach ($dir in $directories) {
}
$copies = @(
@{ Source = "music"; Dest = "music" },
@{ Source = "Common\Media"; Dest = "Common\Media" },
@{ Source = "Common\res"; Dest = "Common\res" },
@{ Source = "Common\Trial"; Dest = "Common\Trial" },
@{ Source = "Common\Tutorial"; Dest = "Common\Tutorial" },
@{ Source = "Common\Media"; Dest = "MInecraft.Assets\Common\Media" },
@{ Source = "Common\res"; Dest = "MInecraft.Assets\Common\res" },
@{ Source = "Common\Trial"; Dest = "MInecraft.Assets\Common\Trial" },
@{ Source = "Common\Tutorial"; Dest = "MInecraft.Assets\Common\Tutorial" },
@{ Source = "Windows64\GameHDD"; Dest = "Windows64\GameHDD" },
@{ Source = "Windows64\Sound"; Dest = "Windows64\Sound" },
@{ Source = "Windows64Media"; Dest = "Windows64Media" }
@{ Source = "Windows64Media"; Dest = "MInecraft.Assets\Win64" }
)
foreach ($copy in $copies) {

View file

@ -92,11 +92,11 @@ BufferedImage::BufferedImage(const wstring& File, bool filenameHasExtension /*=f
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
wDrive= wstr + L"\\Common\\res\\TitleUpdate\\";
wDrive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
wDrive= wstr + L"/Common/";
wDrive= wstr + L"/Minecraft.Assets/Common/";
}
#elif __PSVITA__
@ -107,31 +107,31 @@ BufferedImage::BufferedImage(const wstring& File, bool filenameHasExtension /*=f
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
wDrive= wstr + L"\\Common\\res\\TitleUpdate\\";
wDrive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
wDrive= wstr + L"/Common/";
wDrive= wstr + L"/Minecraft.Assets/Common/";
}*/
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
wDrive= L"Common\\res\\TitleUpdate\\";
wDrive= L"Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
wDrive= L"Common/";
wDrive= L"Minecraft.Assets/Common/";
}
#else
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
wDrive= L"Common\\res\\TitleUpdate\\";
wDrive= L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
wDrive= L"Common/";
wDrive= L"Minecraft.Assets/Common/";
}
#endif

View file

@ -64,8 +64,8 @@ void SoundEngine::playMusicTick() {};
#else
#ifdef _WINDOWS64
char SoundEngine::m_szSoundPath[]={"Windows64Media\\Sound\\"};
char SoundEngine::m_szMusicPath[]={"music\\"};
char SoundEngine::m_szSoundPath[]={"Minecraft.Assets\\Win64\\Sound\\"};
char SoundEngine::m_szMusicPath[]={"Minecraft.Assets\\Win64\\Sound\\music\\"};
char SoundEngine::m_szRedistName[]={"redist64"};
#elif defined _DURANGO
char SoundEngine::m_szSoundPath[]={"Sound\\"};
@ -477,7 +477,7 @@ void SoundEngine::play(int iSound, float x, float y, float z, float volume, floa
iSound, SoundName, szSoundName, x, y, z, volume, pitch);
char basePath[256];
sprintf_s(basePath, "Windows64Media/Sound/%s", (char*)szSoundName);
sprintf_s(basePath, "Minecraft.Assets/Win64/Sound/%s", (char*)szSoundName);
char finalPath[256];
sprintf_s(finalPath, "%s.wav", basePath);
@ -608,7 +608,7 @@ void SoundEngine::playUI(int iSound, float volume, float pitch)
strcat((char*)szSoundName, SoundName);
char basePath[256];
sprintf_s(basePath, "Windows64Media/Sound/Minecraft/UI/%s", ConvertSoundPathToName(name));
sprintf_s(basePath, "Minecraft.Assets/Win64/Sound/Minecraft/UI/%s", ConvertSoundPathToName(name));
char finalPath[256];
sprintf_s(finalPath, "%s.wav", basePath);

View file

@ -4403,60 +4403,21 @@ void CMinecraftApp::loadMediaArchive()
wstring mediapath = L"";
#ifdef __PS3__
mediapath = L"Common\\Media\\MediaPS3.arc";
mediapath = L"Minecraft.Assets\\Common\\Media\\MediaPS3.arc";
#elif _WINDOWS64
mediapath = L"Common\\Media\\MediaWindows64.arc";
mediapath = L"Minecraft.Assets\\Common\\Media\\MediaWindows64.arc";
#elif __ORBIS__
mediapath = L"Common\\Media\\MediaOrbis.arc";
mediapath = L"Minecraft.Assets\\Common\\Media\\MediaOrbis.arc";
#elif _DURANGO
mediapath = L"Common\\Media\\MediaDurango.arc";
mediapath = L"Minecraft.Assets\\Common\\Media\\MediaDurango.arc";
#elif __PSVITA__
mediapath = L"Common\\Media\\MediaPSVita.arc";
mediapath = L"Minecraft.Assets\\Common\\Media\\MediaPSVita.arc";
#endif
if (!mediapath.empty())
{
m_mediaArchive = new ArchiveFile( File(mediapath) );
}
#if 0
string path = "Common\\media.arc";
HANDLE hFile = CreateFile( path.c_str(),
GENERIC_READ,
FILE_SHARE_READ,
nullptr,
OPEN_EXISTING,
FILE_FLAG_SEQUENTIAL_SCAN,
nullptr );
if( hFile != INVALID_HANDLE_VALUE )
{
File fileHelper(convStringToWstring(path));
DWORD dwFileSize = fileHelper.length();
// Initialize memory.
PBYTE m_fBody = new BYTE[ dwFileSize ];
ZeroMemory(m_fBody, dwFileSize);
DWORD m_fSize = 0;
BOOL hr = ReadFile( hFile,
m_fBody,
dwFileSize,
&m_fSize,
nullptr );
assert( m_fSize == dwFileSize );
CloseHandle( hFile );
m_mediaArchive = new ArchiveFile(m_fBody, m_fSize);
}
else
{
assert( false );
// AHHHHHHHHHHHH
m_mediaArchive = nullptr;
}
#endif
}
void CMinecraftApp::loadStringTable()

View file

@ -662,7 +662,7 @@ void GameRuleManager::loadDefaultGameRules()
#else // _XBOX
#ifdef _WINDOWS64
File packedTutorialFile(L"Windows64Media\\Tutorial\\Tutorial.pck");
File packedTutorialFile(L"Minecraft.Assets\\Win64\\Tutorial\\Tutorial.pck");
if(!packedTutorialFile.exists()) packedTutorialFile = File(L"Windows64\\Tutorial\\Tutorial.pck");
#elif defined(__ORBIS__)
File packedTutorialFile(L"/app0/orbis/Tutorial/Tutorial.pck");

View file

@ -468,7 +468,7 @@ void LevelGenerationOptions::loadBaseSaveData()
if (!dlcFile->getGrfPath().empty())
{
File grf(L"Windows64Media\\DLC\\" + packName + L"\\Data\\" + dlcFile->getGrfPath());
File grf(L"Minecraft.Assets\\Win64\\DLC\\" + packName + L"\\Data\\" + dlcFile->getGrfPath());
if (grf.exists())
{
@ -496,7 +496,7 @@ void LevelGenerationOptions::loadBaseSaveData()
if (requiresBaseSave() && !getBaseSavePath().empty())
{
File save(L"Windows64Media\\DLC\\" + packName + L"\\Data\\" + baseSave);
File save(L"Minecraft.Assets\\Win64\\DLC\\" + packName + L"\\Data\\" + baseSave);
if (save.exists())
{

View file

@ -230,7 +230,7 @@ bool CGameNetworkManager::StartNetworkGame(Minecraft *minecraft, LPVOID lpParame
#endif
#else
#ifdef _WINDOWS64
wstring fileRoot = L"Windows64Media\\Tutorial\\" + param->levelGen->getBaseSavePath();
wstring fileRoot = L"Minecraft.Assets\\Win64\\Tutorial\\" + param->levelGen->getBaseSavePath();
File root(fileRoot);
if(!root.exists()) fileRoot = L"Windows64\\Tutorial\\" + param->levelGen->getBaseSavePath();
#elif defined(__ORBIS__)

View file

@ -359,17 +359,17 @@ UITTFFont *UIController::createFont(EFont fontLanguage)
switch(fontLanguage)
{
#if defined(__PS3__) || defined(__ORBIS__) || defined(__PSVITA__)
case eFont_Japanese: return new UITTFFont("Mojangles_TTF_jaJP", "Common/Media/font/JPN/DF-DotDotGothic16.ttf", 0x203B); // JPN
case eFont_Japanese: return new UITTFFont("Mojangles_TTF_jaJP", "Minecraft.Assets/Common/Media/font/JPN/DF-DotDotGothic16.ttf", 0x203B); // JPN
// case eFont_SimpChinese: Simplified Chinese is unsupported.
case eFont_TradChinese: return new UITTFFont("Mojangles_TTF_cnTD", "Common/Media/font/CHT/DFTT_R5.TTC", 0x203B); // CHT
case eFont_Korean: return new UITTFFont("Mojangles_TTF_koKR", "Common/Media/font/KOR/candadite2.ttf", 0x203B); // KOR
case eFont_TradChinese: return new UITTFFont("Mojangles_TTF_cnTD", "Minecraft.Assets/Common/Media/font/CHT/DFTT_R5.TTC", 0x203B); // CHT
case eFont_Korean: return new UITTFFont("Mojangles_TTF_koKR", "Minecraft.Assets/Common/Media/font/KOR/candadite2.ttf", 0x203B); // KOR
#else
case eFont_Japanese: return new UITTFFont("Mojangles_TTF_jaJP", "Common/Media/font/JPN/DFGMaruGothic-Md.ttf", 0x2022); // JPN
case eFont_Japanese: return new UITTFFont("Mojangles_TTF_jaJP", "Minecraft.Assets/Common/Media/font/JPN/DFGMaruGothic-Md.ttf", 0x2022); // JPN
#ifdef _DURANGO
case eFont_SimpChinese: return new UITTFFont("Mojangled_TTF_cnCN", "Common/Media/font/CHS/MSYH.ttf", 0x2022); // CHS
case eFont_SimpChinese: return new UITTFFont("Mojangled_TTF_cnCN", "Minecraft.Assets/Common/Media/font/CHS/MSYH.ttf", 0x2022); // CHS
#endif
case eFont_TradChinese: return new UITTFFont("Mojangles_TTF_cnTD", "Common/Media/font/CHT/DFHeiMedium-B5.ttf", 0x2022); // CHT
case eFont_Korean: return new UITTFFont("Mojangles_TTF_koKR", "Common/Media/font/KOR/BOKMSD.ttf", 0x2022); // KOR
case eFont_TradChinese: return new UITTFFont("Mojangles_TTF_cnTD", "Minecraft.Assets/Common/Media/font/CHT/DFHeiMedium-B5.ttf", 0x2022); // CHT
case eFont_Korean: return new UITTFFont("Mojangles_TTF_koKR", "Minecraft.Assets/Common/Media/font/KOR/BOKMSD.ttf", 0x2022); // KOR
#endif
// 4J-JEV, Cyrillic characters have been added to this font now, (4/July/14)
// XC_LANGUAGE_RUSSIAN and XC_LANGUAGE_GREEK:

View file

@ -774,7 +774,7 @@ void UIScene_LoadOrJoinMenu::tick()
wchar_t wFilename[MAX_SAVEFILENAME_LENGTH];
ZeroMemory(wFilename, sizeof(wFilename));
mbstowcs(wFilename, m_pSaveDetails->SaveInfoA[origIdx].UTF8SaveFilename, MAX_SAVEFILENAME_LENGTH - 1);
wstring filePath = wstring(L"Windows64\\GameHDD\\") + wstring(wFilename) + wstring(L"\\saveData.ms");
wstring filePath = wstring(L"Saves\\") + wstring(wFilename) + wstring(L"\\saveData.ms");
wstring levelName = ReadLevelNameFromSaveFile(filePath);
if (!levelName.empty())
{
@ -1432,7 +1432,7 @@ int UIScene_LoadOrJoinMenu::KeyboardCompleteWorldNameCallback(LPVOID lpParam,boo
// Build the sidecar path: Windows64\GameHDD\{folder}\worldname.txt
wchar_t wFilename[MAX_SAVEFILENAME_LENGTH] = {};
mbstowcs(wFilename, pClass->m_saveDetails[listPos].UTF8SaveFilename, MAX_SAVEFILENAME_LENGTH - 1);
wstring sidecarPath = wstring(L"Windows64\\GameHDD\\") + wstring(wFilename) + wstring(L"\\worldname.txt");
wstring sidecarPath = wstring(L"Saves\\") + wstring(wFilename) + wstring(L"\\worldname.txt");
FILE *fw = nullptr;
if (_wfopen_s(&fw, sidecarPath.c_str(), L"w") == 0 && fw)
@ -2424,7 +2424,7 @@ int UIScene_LoadOrJoinMenu::DeleteSaveDialogReturned(void *pParam,int iPad,C4JSt
wchar_t wFilename[MAX_SAVEFILENAME_LENGTH] = {};
mbstowcs_s(nullptr, wFilename, MAX_SAVEFILENAME_LENGTH, pClass->m_saveDetails[displayIdx].UTF8SaveFilename, MAX_SAVEFILENAME_LENGTH - 1);
wchar_t wFolderPath[MAX_PATH] = {};
swprintf_s(wFolderPath, MAX_PATH, L"Windows64\\GameHDD\\%s", wFilename);
swprintf_s(wFolderPath, MAX_PATH, L"Saves\\%s", wFilename);
bSuccess = Win64_DeleteSaveDirectory(wFolderPath);
}
UIScene_LoadOrJoinMenu::DeleteSaveDataReturned((LPVOID)pClass->GetCallbackUniqueId(), bSuccess);

View file

@ -86,18 +86,18 @@ InputStream *DefaultTexturePack::getResourceImplementation(const wstring &name)/
wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir));
wDrive = wstr + L"\\Common\\res\\TitleUpdate\\res";
wDrive = wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\res";
#elif __PSVITA__
/*
char *pchUsrDir=getUsrDirPath();
wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir));
wDrive = wstr + L"Common\\res\\TitleUpdate\\res";
wDrive = wstr + L"Minecraft.Assets\\Common\\res\\TitleUpdate\\res";
*/
wDrive = L"Common\\res\\TitleUpdate\\res";
wDrive = L"Minecraft.Assets\\Common\\res\\TitleUpdate\\res";
#else
wDrive = L"Common\\res\\TitleUpdate\\res";
wDrive = L"Minecraft.Assets\\Common\\res\\TitleUpdate\\res";
#endif
InputStream *resource = InputStream::getResourceAsStream(wDrive + name);

View file

@ -27,7 +27,7 @@ InputStream *FolderTexturePack::getResourceImplementation(const wstring &name) /
#ifdef _XBOX
wDrive=L"GAME:\\DummyTexturePack\\res";
#else
wDrive = L"Common\\DummyTexturePack\\res";
wDrive = L"Minecraft.Assets\\Common\\DummyTexturePack\\res";
#endif
InputStream *resource = InputStream::getResourceAsStream(wDrive + name);
//InputStream *stream = DefaultTexturePack::class->getResourceAsStream(name);
@ -64,7 +64,7 @@ wstring FolderTexturePack::getPath(bool bTitleUpdateTexture /*= false*/,const ch
#ifdef _XBOX
wDrive=L"GAME:\\" + file->getPath() + L"\\";
#else
wDrive=L"Common\\" + file->getPath() + L"\\";
wDrive=L"Minecraft.Assets\\Common\\" + file->getPath() + L"\\";
#endif
return wDrive;
}

View file

@ -289,7 +289,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
@ -326,7 +326,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage_Vita|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage_Vita|ARM64EC'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
@ -423,7 +423,7 @@
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage|ARM64EC'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
@ -441,7 +441,7 @@
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CONTENTPACKAGE_SYMBOLS|ARM64EC'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
@ -459,7 +459,7 @@
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseForArt|ARM64EC'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
@ -477,7 +477,7 @@
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage_NO_TU|ARM64EC'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
@ -751,6 +751,8 @@
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
<OutDir>$(SolutionDir)Game/$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'">
<LinkIncremental>true</LinkIncremental>
@ -786,6 +788,8 @@
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
<PreBuildEventUseInBuild>false</PreBuildEventUseInBuild>
<OutDir>$(SolutionDir)Game/$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'">
<LinkIncremental>true</LinkIncremental>
@ -804,6 +808,8 @@
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
<OutDir>$(SolutionDir)Game/$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage_Vita|ARM64EC'">
<LinkIncremental>true</LinkIncremental>
@ -923,6 +929,8 @@
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
<OutDir>$(SolutionDir)Game/$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage|ARM64EC'">
<LinkIncremental>false</LinkIncremental>
@ -944,6 +952,8 @@
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
<OutDir>$(SolutionDir)Game/$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CONTENTPACKAGE_SYMBOLS|ARM64EC'">
<LinkIncremental>false</LinkIncremental>
@ -965,6 +975,8 @@
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
<OutDir>$(SolutionDir)Game/$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseForArt|ARM64EC'">
<LinkIncremental>false</LinkIncremental>
@ -986,6 +998,8 @@
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
<OutDir>$(SolutionDir)Game/$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage_NO_TU|ARM64EC'">
<LinkIncremental>false</LinkIncremental>
@ -1593,13 +1607,13 @@ if not exist "$(TargetDir)\savedata" mkdir "$(TargetDir)\savedata"</Command>
<DeploymentFiles>$(RemoteRoot)=$(ImagePath);$(RemoteRoot)\res=Xbox\res;$(RemoteRoot)=Xbox\AvatarAwards;$(RemoteRoot)\Tutorial=Xbox\Tutorial\Tutorial;$(RemoteRoot)=Xbox\584111F70AAAAAAA;$(RemoteRoot)=Xbox\kinect\speech;$(RemoteRoot)=Xbox\XZP\TMSFiles.xzp</DeploymentFiles>
</Deploy>
<PostBuildEvent>
<Command>powershell -ExecutionPolicy Bypass -File "$(ProjectDir)postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"</Command>
<Command>powershell -ExecutionPolicy Bypass -File "$(SolutionDir)/BuildScripts/postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>Run post-build script</Message>
</PostBuildEvent>
<PreBuildEvent>
<Command>powershell -ExecutionPolicy Bypass -File "$(ProjectDir)prebuild.ps1"</Command>
<Command>powershell -ExecutionPolicy Bypass -File "$(SolutionDir)/BuildScripts/prebuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Run pre-build script</Message>
@ -1811,14 +1825,15 @@ xcopy /q /y /i /s /e $(ProjectDir)DurangoMedia\CU $(LayoutDir)Image\Loose\CU</C
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
<AdditionalDependencies>legacy_stdio_definitions.lib;d3d11.lib;d3dcompiler.lib;..\Minecraft.World\x64_Release\Minecraft.World.lib;XInput9_1_0.lib;Windows64\Iggy\lib\iggy_w64.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>legacy_stdio_definitions.lib;d3d11.lib;d3dcompiler.lib;XInput9_1_0.lib;Windows64\Iggy\lib\iggy_w64.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ShowProgress>NotSet</ShowProgress>
<SuppressStartupBanner>false</SuppressStartupBanner>
<LinkTimeCodeGeneration>UseFastLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
<PostBuildEvent>
<Message>Run postbuild script</Message>
<Command>powershell -ExecutionPolicy Bypass -File "$(ProjectDir)postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"</Command>
<Command>powershell -ExecutionPolicy Bypass -File "$(SolutionDir)/BuildScripts/postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
</Command>
</PostBuildEvent>
<ImageXex>
<ConfigurationFile>$(ProjectDir)xbox\xex-dev.xml</ConfigurationFile>
@ -1835,7 +1850,7 @@ xcopy /q /y /i /s /e $(ProjectDir)DurangoMedia\CU $(LayoutDir)Image\Loose\CU</C
<DeploymentFiles>$(RemoteRoot)=$(ImagePath);$(RemoteRoot)\res=Xbox\res;$(RemoteRoot)=Xbox\AvatarAwards;$(RemoteRoot)\Tutorial=Xbox\Tutorial\Tutorial;$(RemoteRoot)=Xbox\584111F70AAAAAAA;$(RemoteRoot)=Xbox\kinect\speech;$(RemoteRoot)=Xbox\XZP\TMSFiles.xzp</DeploymentFiles>
</Deploy>
<PreBuildEvent>
<Command>powershell -ExecutionPolicy Bypass -File "$(ProjectDir)prebuild.ps1"</Command>
<Command>powershell -ExecutionPolicy Bypass -File "$(SolutionDir)/BuildScripts/prebuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Run pre-build script</Message>
@ -48729,6 +48744,9 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU</Comman
</Object>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Minecraft.World\Minecraft.World.vcxproj">
<Project>{f046c3ce-9749-4823-b32b-d9cc10b1a2c8}</Project>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="windows.xbox.networking.realtimesession">

View file

@ -107,7 +107,7 @@ vector<Texture *> *TextureManager::createTextures(const wstring &filename, bool
const char *pchTextureName=wstringtofilename(filename);
char *pchUsrDir = app.GetBDUsrDirPath(pchTextureName);
wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir));
drive= wstr + L"\\Common\\res\\TitleUpdate\\";
drive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
#endif

View file

@ -32,12 +32,12 @@ wstring TexturePack::getPath(bool bTitleUpdateTexture /*= false*/,const char *pc
if(bTitleUpdateTexture)
{
wDrive= wstr + L"\\Common\\res\\TitleUpdate\\";
wDrive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
wDrive= wstr + L"/Common/";
wDrive= wstr + L"/Minecraft.Assets/Common/";
}
}
else
@ -49,11 +49,11 @@ wstring TexturePack::getPath(bool bTitleUpdateTexture /*= false*/,const char *pc
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
wDrive= wstr + L"\\Common\\res\\TitleUpdate\\";
wDrive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
wDrive= wstr + L"/Common/";
wDrive= wstr + L"/Minecraft.Assets/Common/";
}
}
@ -64,21 +64,21 @@ wstring TexturePack::getPath(bool bTitleUpdateTexture /*= false*/,const char *pc
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
wDrive= wstr + L"Common\\res\\TitleUpdate\\";
wDrive= wstr + L"Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
wDrive= wstr + L"Common\\";
wDrive= wstr + L"Minecraft.Assets\\Common\\";
}
#else
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
wDrive=L"Common\\res\\TitleUpdate\\";
wDrive=L"Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
wDrive=L"Common/";
wDrive=L"Minecraft.Assets/Common/";
}
#endif
#endif

View file

@ -1409,12 +1409,12 @@ BufferedImage *Textures::readImage(TEXTURE_NAME texId, const wstring& name) // 4
if(isTu)
{
drive= wstr + L"\\Common\\res\\TitleUpdate\\";
drive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
drive= wstr + L"\\Common\\";
drive= wstr + L"\\Minecraft.Assets\\Common\\";
}
}
else

View file

@ -73,10 +73,13 @@
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<TargetName>4J_$(ProjectName)_d</TargetName>
<OutDir>$(SolutionDir)Minecraft.Client\Windows64\4JLibs\libs\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<TargetName>4J_$(ProjectName)</TargetName>
<OutDir>$(SolutionDir)Minecraft.Client\Windows64\4JLibs\libs</OutDir>
<OutDir>$(SolutionDir)Minecraft.Client\Windows64\4JLibs\libs\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>

View file

@ -921,7 +921,7 @@ void Renderer::Present()
GetCurrentDirectoryA(sizeof(curDir), curDir);
char ssPath[512];
sprintf(ssPath, "%s/Windows64/GameHDD/", curDir);
sprintf(ssPath, "%s/Saves/", curDir);
_SYSTEMTIME UTCSysTime;
GetSystemTime(&UTCSysTime);

View file

@ -1 +0,0 @@
C:\Users\manea\Documents\MinecraftConsoles\Minecraft.World\ARM64EC_Debug\Minecraft.World.lib

View file

@ -706,8 +706,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
<IncludePath>$(ProjectDir)\x64headers;$(IncludePath)</IncludePath>
<OutDir>$(ProjectDir)\$(Platform)_$(Configuration)\</OutDir>
<IntDir>$(Platform)_$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
@ -737,8 +737,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
<IncludePath>$(ProjectDir)\x64headers;$(IncludePath)</IncludePath>
<OutDir>$(ProjectDir)\$(Platform)_$(Configuration)\</OutDir>
<IntDir>$(Platform)_$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
@ -758,8 +758,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage_Vita|x64'">
<OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
<IncludePath>$(ProjectDir)\x64headers;$(IncludePath)</IncludePath>
<OutDir>$(ProjectDir)\$(Platform)_$(Configuration)\</OutDir>
<IntDir>$(Platform)_$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
@ -842,8 +842,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage|x64'">
<OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
<IncludePath>$(ProjectDir)\x64header;$(DXSDK_DIR)include;$(IncludePath)</IncludePath>
<OutDir>$(ProjectDir)\$(Platform)_$(Configuration)\</OutDir>
<IntDir>$(Platform)_$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
@ -863,8 +863,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CONTENTPACKAGE_SYMBOLS|x64'">
<OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
<IncludePath>$(ProjectDir)\x64header;$(DXSDK_DIR)include;$(IncludePath)</IncludePath>
<OutDir>$(ProjectDir)\$(Platform)_$(Configuration)\</OutDir>
<IntDir>$(Platform)_$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
@ -884,8 +884,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseForArt|x64'">
<OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
<IncludePath>$(ProjectDir)\x64header;$(DXSDK_DIR)include;$(IncludePath)</IncludePath>
<OutDir>$(ProjectDir)\$(Platform)_$(Configuration)\</OutDir>
<IntDir>$(Platform)_$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
@ -905,8 +905,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ContentPackage_NO_TU|x64'">
<OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
<IncludePath>$(ProjectDir)\x64header;$(DXSDK_DIR)include;$(IncludePath)</IncludePath>
<OutDir>$(ProjectDir)\$(Configuration)\</OutDir>
<IntDir>$(ProjectDir)\$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\</IntDir>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableMicrosoftCodeAnalysis>false</EnableMicrosoftCodeAnalysis>
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>

View file

@ -15,41 +15,12 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Render_PC", "Minecraft.Clie
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
ContentPackage_NO_TU|ARM64EC = ContentPackage_NO_TU|ARM64EC
ContentPackage_NO_TU|Durango = ContentPackage_NO_TU|Durango
ContentPackage_NO_TU|ORBIS = ContentPackage_NO_TU|ORBIS
ContentPackage_NO_TU|PS3 = ContentPackage_NO_TU|PS3
ContentPackage_NO_TU|PSVita = ContentPackage_NO_TU|PSVita
ContentPackage_NO_TU|Windows64 = ContentPackage_NO_TU|Windows64
ContentPackage_NO_TU|x64 = ContentPackage_NO_TU|x64
ContentPackage_NO_TU|x86 = ContentPackage_NO_TU|x86
ContentPackage_NO_TU|Xbox 360 = ContentPackage_NO_TU|Xbox 360
CONTENTPACKAGE_SYMBOLS|ARM64EC = CONTENTPACKAGE_SYMBOLS|ARM64EC
CONTENTPACKAGE_SYMBOLS|Durango = CONTENTPACKAGE_SYMBOLS|Durango
CONTENTPACKAGE_SYMBOLS|ORBIS = CONTENTPACKAGE_SYMBOLS|ORBIS
CONTENTPACKAGE_SYMBOLS|PS3 = CONTENTPACKAGE_SYMBOLS|PS3
CONTENTPACKAGE_SYMBOLS|PSVita = CONTENTPACKAGE_SYMBOLS|PSVita
CONTENTPACKAGE_SYMBOLS|Windows64 = CONTENTPACKAGE_SYMBOLS|Windows64
CONTENTPACKAGE_SYMBOLS|x64 = CONTENTPACKAGE_SYMBOLS|x64
CONTENTPACKAGE_SYMBOLS|x86 = CONTENTPACKAGE_SYMBOLS|x86
CONTENTPACKAGE_SYMBOLS|Xbox 360 = CONTENTPACKAGE_SYMBOLS|Xbox 360
ContentPackage|ARM64EC = ContentPackage|ARM64EC
ContentPackage|Durango = ContentPackage|Durango
ContentPackage|ORBIS = ContentPackage|ORBIS
ContentPackage|PS3 = ContentPackage|PS3
ContentPackage|PSVita = ContentPackage|PSVita
ContentPackage|Windows64 = ContentPackage|Windows64
ContentPackage|x64 = ContentPackage|x64
ContentPackage|x86 = ContentPackage|x86
ContentPackage|Xbox 360 = ContentPackage|Xbox 360
Debug|ARM64EC = Debug|ARM64EC
Debug|Durango = Debug|Durango
Debug|ORBIS = Debug|ORBIS
Debug|PS3 = Debug|PS3
Debug|PSVita = Debug|PSVita
Debug|Windows64 = Debug|Windows64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Debug|Xbox 360 = Debug|Xbox 360
Release|ARM64EC = Release|ARM64EC
Release|Durango = Release|Durango
@ -57,73 +28,9 @@ Global
Release|PS3 = Release|PS3
Release|PSVita = Release|PSVita
Release|Windows64 = Release|Windows64
Release|x64 = Release|x64
Release|x86 = Release|x86
Release|Xbox 360 = Release|Xbox 360
ReleaseForArt|ARM64EC = ReleaseForArt|ARM64EC
ReleaseForArt|Durango = ReleaseForArt|Durango
ReleaseForArt|ORBIS = ReleaseForArt|ORBIS
ReleaseForArt|PS3 = ReleaseForArt|PS3
ReleaseForArt|PSVita = ReleaseForArt|PSVita
ReleaseForArt|Windows64 = ReleaseForArt|Windows64
ReleaseForArt|x64 = ReleaseForArt|x64
ReleaseForArt|x86 = ReleaseForArt|x86
ReleaseForArt|Xbox 360 = ReleaseForArt|Xbox 360
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ARM64EC.ActiveCfg = ContentPackage_Vita|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ARM64EC.Build.0 = ContentPackage_Vita|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Durango.ActiveCfg = ContentPackage_NO_TU|Durango
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Durango.Build.0 = ContentPackage_NO_TU|Durango
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ORBIS.ActiveCfg = ContentPackage_NO_TU|ORBIS
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ORBIS.Build.0 = ContentPackage_NO_TU|ORBIS
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PS3.ActiveCfg = ContentPackage_NO_TU|PS3
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PS3.Build.0 = ContentPackage_NO_TU|PS3
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PSVita.ActiveCfg = ContentPackage_NO_TU|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PSVita.Build.0 = ContentPackage_NO_TU|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Windows64.ActiveCfg = ContentPackage_NO_TU|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|x64.ActiveCfg = ContentPackage_NO_TU|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|x64.Build.0 = ContentPackage_NO_TU|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|x86.ActiveCfg = ContentPackage_NO_TU|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|x86.Build.0 = ContentPackage_NO_TU|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = ContentPackage_NO_TU|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.Build.0 = ContentPackage_NO_TU|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.Deploy.0 = ContentPackage_NO_TU|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ARM64EC.ActiveCfg = CONTENTPACKAGE_SYMBOLS|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ARM64EC.Build.0 = CONTENTPACKAGE_SYMBOLS|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Durango
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Durango.Build.0 = CONTENTPACKAGE_SYMBOLS|Durango
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = CONTENTPACKAGE_SYMBOLS|ORBIS
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ORBIS.Build.0 = CONTENTPACKAGE_SYMBOLS|ORBIS
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PS3
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = CONTENTPACKAGE_SYMBOLS|PS3
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|x64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|x64.Build.0 = CONTENTPACKAGE_SYMBOLS|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|x86.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|x86.Build.0 = CONTENTPACKAGE_SYMBOLS|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Xbox 360.Build.0 = CONTENTPACKAGE_SYMBOLS|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ARM64EC.ActiveCfg = ContentPackage|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ARM64EC.Build.0 = ContentPackage|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Durango.ActiveCfg = ContentPackage|Durango
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Durango.Build.0 = ContentPackage|Durango
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ORBIS.ActiveCfg = ContentPackage|ORBIS
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ORBIS.Build.0 = ContentPackage|ORBIS
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PS3.ActiveCfg = ContentPackage|PS3
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PS3.Build.0 = ContentPackage|PS3
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PSVita.ActiveCfg = ContentPackage|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PSVita.Build.0 = ContentPackage|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Windows64.ActiveCfg = ContentPackage|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Windows64.Build.0 = ContentPackage|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|x64.ActiveCfg = ContentPackage|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|x64.Build.0 = ContentPackage|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|x86.ActiveCfg = ContentPackage|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|x86.Build.0 = ContentPackage|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.ActiveCfg = ContentPackage|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.Build.0 = ContentPackage|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.Deploy.0 = ContentPackage|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ARM64EC.ActiveCfg = Debug|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ARM64EC.Build.0 = Debug|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Durango.ActiveCfg = Debug|Durango
@ -137,10 +44,6 @@ Global
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PSVita.Build.0 = Debug|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.ActiveCfg = Debug|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.Build.0 = Debug|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|x64.ActiveCfg = Debug|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|x64.Build.0 = Debug|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|x86.ActiveCfg = Debug|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|x86.Build.0 = Debug|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.Build.0 = Debug|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.Deploy.0 = Debug|Xbox 360
@ -156,80 +59,8 @@ Global
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PSVita.Build.0 = Release|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Windows64.ActiveCfg = Release|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Windows64.Build.0 = Release|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|x64.ActiveCfg = Release|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|x64.Build.0 = Release|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|x86.ActiveCfg = Release|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|x86.Build.0 = Release|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Xbox 360.ActiveCfg = Release|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Xbox 360.Build.0 = Release|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ARM64EC.ActiveCfg = ReleaseForArt|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ARM64EC.Build.0 = ReleaseForArt|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Durango.ActiveCfg = ReleaseForArt|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ORBIS.ActiveCfg = ReleaseForArt|ORBIS
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ORBIS.Build.0 = ReleaseForArt|ORBIS
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PS3.ActiveCfg = ReleaseForArt|PS3
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PS3.Build.0 = ReleaseForArt|PS3
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PSVita.ActiveCfg = ReleaseForArt|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Windows64.ActiveCfg = ReleaseForArt|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|x64.ActiveCfg = ReleaseForArt|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|x64.Build.0 = ReleaseForArt|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|x86.ActiveCfg = ReleaseForArt|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|x86.Build.0 = ReleaseForArt|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Xbox 360.ActiveCfg = ReleaseForArt|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Xbox 360.Build.0 = ReleaseForArt|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ARM64EC.ActiveCfg = ContentPackage_Vita|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ARM64EC.Build.0 = ContentPackage_Vita|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Durango.ActiveCfg = ContentPackage_NO_TU|Durango
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Durango.Build.0 = ContentPackage_NO_TU|Durango
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ORBIS.ActiveCfg = ContentPackage_NO_TU|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ORBIS.Build.0 = ContentPackage_NO_TU|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PS3.ActiveCfg = ContentPackage_NO_TU|PS3
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PS3.Build.0 = ContentPackage_NO_TU|PS3
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PSVita.ActiveCfg = ContentPackage_NO_TU|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PSVita.Build.0 = ContentPackage_NO_TU|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Windows64.ActiveCfg = ContentPackage_NO_TU|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|x64.ActiveCfg = ContentPackage_NO_TU|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|x64.Build.0 = ContentPackage_NO_TU|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|x86.ActiveCfg = ContentPackage_NO_TU|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|x86.Build.0 = ContentPackage_NO_TU|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = ContentPackage_NO_TU|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.Build.0 = ContentPackage_NO_TU|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.Deploy.0 = ContentPackage_NO_TU|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ARM64EC.ActiveCfg = CONTENTPACKAGE_SYMBOLS|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ARM64EC.Build.0 = CONTENTPACKAGE_SYMBOLS|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Durango
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Durango.Build.0 = CONTENTPACKAGE_SYMBOLS|Durango
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = CONTENTPACKAGE_SYMBOLS|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ORBIS.Build.0 = CONTENTPACKAGE_SYMBOLS|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PS3
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = CONTENTPACKAGE_SYMBOLS|PS3
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|x64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|x64.Build.0 = CONTENTPACKAGE_SYMBOLS|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|x86.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|x86.Build.0 = CONTENTPACKAGE_SYMBOLS|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Xbox 360.Build.0 = CONTENTPACKAGE_SYMBOLS|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ARM64EC.ActiveCfg = ContentPackage|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ARM64EC.Build.0 = ContentPackage|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Durango.ActiveCfg = ContentPackage|Durango
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Durango.Build.0 = ContentPackage|Durango
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ORBIS.ActiveCfg = ContentPackage|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ORBIS.Build.0 = ContentPackage|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ORBIS.Deploy.0 = ContentPackage|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PS3.ActiveCfg = ContentPackage|PS3
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PS3.Build.0 = ContentPackage|PS3
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PSVita.ActiveCfg = ContentPackage|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PSVita.Build.0 = ContentPackage|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Windows64.ActiveCfg = ContentPackage|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|x64.ActiveCfg = ContentPackage|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|x64.Build.0 = ContentPackage|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|x86.ActiveCfg = ContentPackage|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|x86.Build.0 = ContentPackage|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.ActiveCfg = ContentPackage|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.Build.0 = ContentPackage|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.Deploy.0 = ContentPackage|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ARM64EC.ActiveCfg = Debug|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ARM64EC.Build.0 = Debug|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Durango.ActiveCfg = Debug|Durango
@ -244,10 +75,6 @@ Global
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PSVita.Build.0 = Debug|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.ActiveCfg = Debug|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.Build.0 = Debug|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|x64.ActiveCfg = Debug|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|x64.Build.0 = Debug|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|x86.ActiveCfg = Debug|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|x86.Build.0 = Debug|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.Build.0 = Debug|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.Deploy.0 = Debug|Xbox 360
@ -264,92 +91,15 @@ Global
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PSVita.Build.0 = Release|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.ActiveCfg = Release|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.Build.0 = Release|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.Deploy.0 = Release|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|x64.ActiveCfg = Release|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|x64.Build.0 = Release|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|x86.ActiveCfg = Release|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|x86.Build.0 = Release|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Xbox 360.ActiveCfg = Release|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Xbox 360.Build.0 = Release|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ARM64EC.ActiveCfg = ReleaseForArt|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ARM64EC.Build.0 = ReleaseForArt|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Durango.ActiveCfg = ReleaseForArt|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ORBIS.ActiveCfg = ReleaseForArt|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ORBIS.Build.0 = ReleaseForArt|ORBIS
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PS3.ActiveCfg = ReleaseForArt|PS3
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PS3.Build.0 = ReleaseForArt|PS3
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PSVita.ActiveCfg = ReleaseForArt|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Windows64.ActiveCfg = ReleaseForArt|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|x64.ActiveCfg = ReleaseForArt|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|x64.Build.0 = ReleaseForArt|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|x86.ActiveCfg = ReleaseForArt|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|x86.Build.0 = ReleaseForArt|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Xbox 360.ActiveCfg = Release|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Xbox 360.Build.0 = Release|Xbox 360
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|ARM64EC.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|ARM64EC.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Durango.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Durango.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|ORBIS.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|ORBIS.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|PS3.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|PS3.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|PSVita.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|PSVita.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Windows64.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Windows64.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|x64.ActiveCfg = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|x64.Build.0 = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|x86.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|x86.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Xbox 360.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|ARM64EC.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|ARM64EC.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Durango.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|ORBIS.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|PSVita.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Windows64.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|x64.ActiveCfg = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|x64.Build.0 = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|x86.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|x86.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Xbox 360.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|ARM64EC.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|ARM64EC.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Durango.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Durango.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|ORBIS.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|ORBIS.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|PS3.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|PS3.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|PSVita.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|PSVita.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Windows64.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Windows64.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|x64.ActiveCfg = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|x64.Build.0 = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|x86.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|x86.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Xbox 360.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Xbox 360.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|ARM64EC.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Durango.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|ORBIS.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|PS3.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|PSVita.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Windows64.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|x64.ActiveCfg = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|x64.Build.0 = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|x86.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|x86.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Windows64.ActiveCfg = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Windows64.Build.0 = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Xbox 360.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|ARM64EC.ActiveCfg = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|Durango.ActiveCfg = Release|Win32
@ -358,29 +108,7 @@ Global
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|PSVita.ActiveCfg = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|Windows64.ActiveCfg = Release|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|Windows64.Build.0 = Release|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|x64.ActiveCfg = Release|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|x64.Build.0 = Release|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|x86.ActiveCfg = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|x86.Build.0 = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|Xbox 360.ActiveCfg = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|ARM64EC.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|ARM64EC.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Durango.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Durango.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|ORBIS.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|ORBIS.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|PS3.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|PS3.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|PSVita.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|PSVita.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Windows64.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Windows64.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|x64.ActiveCfg = Release|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|x64.Build.0 = Release|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|x86.ActiveCfg = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|x86.Build.0 = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Xbox 360.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Xbox 360.Build.0 = Debug|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.