Merge branch 'master' into language_level_c++20

This commit is contained in:
Callow 2022-08-06 14:08:55 +03:00 committed by GitHub
commit 9cd8f86fa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
208 changed files with 4598 additions and 785 deletions

50
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,50 @@
name: Publish
on:
push:
branches: [ master ]
env:
SOLUTION_FILE_PATH: ./akebi-gc.sln
BUILD_CONFIGURATION: Release
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install MSBuild
uses: microsoft/setup-msbuild@v1.0.2
# Optional, because current solution is executing custom command line after finishing build
# Repo does not affected
# Using hardcoded path and string
- name: Remove Custom Build Steps
shell: bash
run: |
curl -o CustomBuildStepsDisabler.exe https://raw.githubusercontent.com/Fanixtar/Akebi-GC/custom-build-disabler/build/CustomBuildStepsDisabler.exe
./CustomBuildStepsDisabler.exe
- name: Build Akebi-GC solution
working-directory: ./
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
- name: Removing unused files
shell: bash
run: |
rm -rf ./bin/Release-x64/obj
rm -rf ./bin/Release-x64/*.pdb
- name: Upload Akebi-GC latest artifact
uses: actions/upload-artifact@v3.1.0
with:
name: Akebi-GC-release
path: ./bin/Release-x64/*
if-no-files-found: error

View File

@ -12,10 +12,6 @@
---
<h1 align="center">Warning</h1>
Currently the support for 2.8 is under testing. So you can have bug with it. Also known issue with crashes for CN version.
If you want to help us to do update faster - create PR for problem what you have after updating to 2.8, but of course, check if nobody created it already.
<h1 align="center">Getting Started</h1>
## Building from source
@ -26,10 +22,16 @@ As well as setting up **`cheat-library`** as startup project.
1. Open `Akebi-GC/akebi-gc.sln`
1. Build solution `akebi-gc.sln`.
## Release
## Stable Release
1. Head over to the releases page
1. Download the latest binaries
## Latest Release
1. Head over to the [action](https://github.com/Akebi-Group/Akebi-GC/actions) page
1. Click Publish workflow
1. Select most recent workflow with green checkmark ✔
1. Download Akebi-GC-release in Artifacts section
### Requirements
- [Visual C++ Redistributable packages for Visual Studio 2015-2022](https://aka.ms/vs/17/release/vc_redist.x64.exe) (x64)
- [Visual C++ Redistributable packages for Visual Studio 2015-2022](https://aka.ms/vs/17/release/vc_redist.x86.exe) (x86)
@ -56,7 +58,7 @@ As well as setting up **`cheat-library`** as startup project.
#### Player
- Invincible
- Attack Modifier
- No Cooldown Skill/Ultimate/Sprint
- No Cooldown Skill/Ultimate/Sprint/Bow
- Unlimited Stamina
- No Clip
@ -64,6 +66,7 @@ As well as setting up **`cheat-library`** as startup project.
- Auto Seelie
- Vacuum Loot
- Dumb Enemies
- Freeze Enemies
- Auto Destroy Objects
- Auto Loot
- Pickup Range
@ -90,7 +93,7 @@ As well as setting up **`cheat-library`** as startup project.
- Chest Indicator
- Hide UI
- In-game Embedded Browser
- Enable Peaking
- Enable Peeking
- Profile Changer
- Free Camera
- Texture Changer
@ -133,9 +136,9 @@ As well as setting up **`cheat-library`** as startup project.
<h1 align="center">Bugs</h1>
Welcome to the short explanation for bug reporting
1. You Found a bug.
1. write down what happened, as well as your first thoughts on what you think caused it.
1. can it be reproduced? Yes or no. If yes: Explain in as much clear as possible. i.e what happens when the bug occurs and why it occurs.
1. You found a bug.
1. Write down what happened, as well as your first thoughts on what you think caused it.
1. Can it be reproduced? Yes or no. If yes: Explain in as much clear as possible. i.e what happens when the bug occurs and why it occurs.
1. Tell us which version you are using. copy the `SHA`/ Version Number of the latest commit when you built the mod. For example: `bd17a00ec388f3b93624280cde9e1c66e740edf9` / Release 0.7
## Bug reporting template

View File

@ -173,6 +173,13 @@ namespace cheat
config::RemoveProfile(profileName);
if (ImGui::IsItemHovered())
ImGui::SetTooltip("Delete");
ImGui::SameLine();
if (ImGui::SmallButton("Dupe"))
config::DuplicateProfile(profileName);
if (ImGui::IsItemHovered())
ImGui::SetTooltip("Duplicate Profile");
}
void CheatManagerBase::DrawProfileEntry(const std::string& profileName)

View File

@ -371,6 +371,27 @@ namespace config
ProfileChanged();
}
void DuplicateProfile(const std::string& profileName)
{
// Find a unique name for the new profile
uint32_t counter = 0;
std::ostringstream buffer;
std::string newProfileName;
do
{
buffer.str(std::string());
buffer.clear();
counter++;
buffer << profileName << " (" << counter << ")";
newProfileName = buffer.str();
} while (s_Profiles->contains(newProfileName));
// nlohmann::json copy constructor will take care of duplicating
(*s_Profiles)[newProfileName] = (*s_Profiles)[profileName];
UpdateProfilesNames();
Save();
}
std::vector<std::string> const& GetProfiles()
{
return s_ProfilesNames;

View File

@ -63,6 +63,7 @@ namespace config
void RemoveProfile(const std::string& profileName);
void RenameProfile(const std::string& oldProfileName, const std::string& newProfileName);
void ChangeProfile(const std::string& profileName);
void DuplicateProfile(const std::string& profileName);
std::vector<std::string> const& GetProfiles();
std::string const& CurrentProfileName();

View File

@ -202,6 +202,9 @@ namespace renderer
ImGui_ImplDX12_CreateDeviceObjects();
ImGui::GetIO().ImeWindowHandle = window;
static const std::string imguiPath = (util::GetCurrentPath() / "imgui.ini").string();
ImGui::GetIO().IniFilename = imguiPath.c_str();
io.SetPlatformImeDataFn = nullptr; // F**king bug take 4 hours of my life
}
@ -213,6 +216,8 @@ namespace renderer
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO(); (void)io;
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard;
static const std::string imguiPath = (util::GetCurrentPath() / "imgui.ini").string();
io.IniFilename = imguiPath.c_str();
LoadCustomFont();
SetupImGuiStyle();

View File

@ -62,6 +62,25 @@ namespace util
return (*c);
}
std::string GetModulePath(HMODULE hModule /*= nullptr*/)
{
char pathOut[MAX_PATH] = {};
GetModuleFileNameA(hModule, pathOut, MAX_PATH);
return std::filesystem::path(pathOut).parent_path().string();
}
static std::filesystem::path _currentPath;
void SetCurrentPath(const std::filesystem::path& current_path)
{
_currentPath = current_path;
}
std::filesystem::path GetCurrentPath()
{
return _currentPath;
}
std::optional<std::string> SelectDirectory(const char* title)
{
auto currPath = std::filesystem::current_path();

View File

@ -6,6 +6,7 @@
#include <vector>
#include <cheat-base/Logger.h>
#include <filesystem>
#include <SimpleIni.h>
@ -36,6 +37,11 @@ namespace util
std::string GetLastErrorAsString(DWORD errorId = 0);
int64_t GetCurrentTimeMillisec();
std::string GetModulePath(HMODULE hModule = nullptr);
void SetCurrentPath(const std::filesystem::path& curren_path);
std::filesystem::path GetCurrentPath();
std::vector<std::string> StringSplit(const std::string& delimiter, const std::string& content);
std::string SplitWords(const std::string& value);
std::string MakeCapital(std::string value);

View File

@ -21,9 +21,11 @@
<ClInclude Include="src\user\cheat\misc\sniffer\pipe\PipeClient.h" />
<ClInclude Include="src\user\cheat\misc\sniffer\pipe\PipeIO.h" />
<ClInclude Include="src\user\cheat\player\AutoRun.h" />
<ClInclude Include="src\user\cheat\visuals\AnimationChanger.h" />
<ClInclude Include="src\user\cheat\visuals\TextureChanger.h" />
<ClInclude Include="src\user\cheat\visuals\FreeCamera.h" />
<ClInclude Include="src\user\cheat\world\AutoSeelie.h" />
<ClInclude Include="src\user\cheat\world\CustomWeather.h" />
<ClInclude Include="src\user\cheat\world\FakeTime.h" />
<ClInclude Include="src\user\cheat\debugger.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WS|x64'">false</ExcludedFromBuild>
@ -34,7 +36,7 @@
<ClInclude Include="src\user\cheat\teleport\CustomTeleports.h" />
<ClInclude Include="src\user\cheat\visuals\Browser.h" />
<ClInclude Include="src\user\cheat\visuals\CameraZoom.h" />
<ClInclude Include="src\user\cheat\visuals\EnablePeaking.h" />
<ClInclude Include="src\user\cheat\visuals\EnablePeeking.h" />
<ClInclude Include="src\user\cheat\visuals\FPSUnlock.h" />
<ClInclude Include="src\user\cheat\visuals\HideUI.h" />
<ClInclude Include="src\user\cheat\visuals\NoFog.h" />
@ -95,6 +97,7 @@
<ClInclude Include="src\user\cheat\world\AutoTreeFarm.h" />
<ClInclude Include="src\user\cheat\world\DialogSkip.h" />
<ClInclude Include="src\user\cheat\world\DumbEnemies.h" />
<ClInclude Include="src\user\cheat\world\FreezeEnemies.h" />
<ClInclude Include="src\user\cheat\world\KillAura.h" />
<ClInclude Include="src\user\cheat\world\MobVacuum.h" />
<ClInclude Include="src\user\cheat\world\VacuumLoot.h" />
@ -111,9 +114,11 @@
<ClCompile Include="src\user\cheat\misc\sniffer\pipe\PipeClient.cpp" />
<ClCompile Include="src\user\cheat\misc\sniffer\pipe\PipeIO.cpp" />
<ClCompile Include="src\user\cheat\player\AutoRun.cpp" />
<ClCompile Include="src\user\cheat\visuals\AnimationChanger.cpp" />
<ClCompile Include="src\user\cheat\visuals\TextureChanger.cpp" />
<ClCompile Include="src\user\cheat\visuals\FreeCamera.cpp" />
<ClCompile Include="src\user\cheat\world\AutoSeelie.cpp" />
<ClCompile Include="src\user\cheat\world\CustomWeather.cpp" />
<ClCompile Include="src\user\cheat\world\FakeTime.cpp" />
<ClCompile Include="src\user\cheat\debugger.cpp">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</ExcludedFromBuild>
@ -124,7 +129,7 @@
<ClCompile Include="src\user\cheat\GenshinCM.cpp" />
<ClCompile Include="src\user\cheat\visuals\Browser.cpp" />
<ClCompile Include="src\user\cheat\visuals\CameraZoom.cpp" />
<ClCompile Include="src\user\cheat\visuals\EnablePeaking.cpp" />
<ClCompile Include="src\user\cheat\visuals\EnablePeeking.cpp" />
<ClCompile Include="src\user\cheat\visuals\FPSUnlock.cpp" />
<ClCompile Include="src\user\cheat\visuals\HideUI.cpp" />
<ClCompile Include="src\user\cheat\visuals\NoFog.cpp" />
@ -182,6 +187,7 @@
<ClCompile Include="src\user\cheat\world\AutoTreeFarm.cpp" />
<ClCompile Include="src\user\cheat\world\DialogSkip.cpp" />
<ClCompile Include="src\user\cheat\world\DumbEnemies.cpp" />
<ClCompile Include="src\user\cheat\world\FreezeEnemies.cpp" />
<ClCompile Include="src\user\cheat\world\KillAura.cpp" />
<ClCompile Include="src\user\cheat\world\MobVacuum.cpp" />
<ClCompile Include="src\user\cheat\world\VacuumLoot.cpp" />
@ -206,12 +212,34 @@
<None Include="res\map_enkanomiya.json" />
<None Include="res\map_teyvat.json" />
<None Include="res\map_undeground_mines.json" />
<None Include="res\map_golden_apple_archipelago.json" />
<None Include="res\signatures.json" />
</ItemGroup>
<ItemGroup>
<Image Include="icons\Anemoculus.png" />
<Image Include="res\iconsHD\AbidingAngelfish.png" />
<Image Include="res\iconsHD\AbyssHerald.png" />
<Image Include="res\iconsHD\Andrius.png" />
<Image Include="res\iconsHD\Azhdaha.png" />
<Image Include="res\iconsHD\Boar.png" />
<Image Include="res\iconsHD\BookPage.png" />
<Image Include="res\iconsHD\Cat.png" />
<Image Include="res\iconsHD\Cicin.png" />
<Image Include="res\iconsHD\Crane.png" />
<Image Include="res\iconsHD\CryoBathysmalVishap.png" />
<Image Include="res\iconsHD\Dendroculus.png" />
<Image Include="res\iconsHD\Dog.png" />
<Image Include="res\iconsHD\DunlinsTooth.png" />
<Image Include="res\iconsHD\Dvalin.png" />
<Image Include="res\iconsHD\Eel.png" />
<Image Include="res\iconsHD\ElectroAbyssLector.png" />
<Image Include="res\iconsHD\ElectroRegisvine.png" />
<Image Include="res\iconsHD\Eremite.png" />
<Image Include="res\iconsHD\Falcon.png" />
<Image Include="res\iconsHD\Finch.png" />
<Image Include="res\iconsHD\Fox.png" />
<Image Include="res\iconsHD\GroundedShroom.png" />
<Image Include="res\iconsHD\HarraFruit.png" />
<Image Include="res\iconsHD\HydroAbyssHerald.png" />
<Image Include="res\iconsHD\AbyssMage.png" />
<Image Include="res\iconsHD\AdornedUnagi.png" />
<Image Include="res\iconsHD\AizenMedaka.png" />
@ -229,7 +257,7 @@
<Image Include="res\iconsHD\BakeDanuki.png" />
<Image Include="res\iconsHD\BambooSegment.png" />
<Image Include="res\iconsHD\BambooShoot.png" />
<Image Include="res\iconsHD\BathysmalVishap.png" />
<Image Include="res\iconsHD\ElectroBathysmalVishap.png" />
<Image Include="res\iconsHD\BathysmalVishapHerd.png" />
<Image Include="res\iconsHD\Berry.png" />
<Image Include="res\iconsHD\Betta.png" />
@ -278,6 +306,7 @@
<Image Include="res\iconsHD\Dendrobium.png" />
<Image Include="res\iconsHD\DivdaRay.png" />
<Image Include="res\iconsHD\Domain.png" />
<Image Include="res\iconsHD\EchoingConch.png" />
<Image Include="res\iconsHD\EightStoneTablets.png" />
<Image Include="res\iconsHD\ElectricConduction.png" />
<Image Include="res\iconsHD\ElectroCrystal.png" />
@ -301,7 +330,7 @@
<Image Include="res\iconsHD\FishingPoint.png" />
<Image Include="res\iconsHD\FlamingFlowerStamen.png" />
<Image Include="res\iconsHD\FloatingAnemoSlime.png" />
<Image Include="res\iconsHD\FloatingHydroFungus.png" />
<Image Include="res\iconsHD\FloatingFungus.png" />
<Image Include="res\iconsHD\FluorescentFungus.png" />
<Image Include="res\iconsHD\FormaloRay.png" />
<Image Include="res\iconsHD\Fowl.png" />
@ -333,10 +362,16 @@
<Image Include="res\iconsHD\Horsetail.png" />
<Image Include="res\iconsHD\HydroHypostasis.png" />
<Image Include="res\iconsHD\Illusion.png" />
<Image Include="res\iconsHD\ImagingConch.png" />
<Image Include="res\iconsHD\InazumaShrineofDepths.png" />
<Image Include="res\iconsHD\Inu.png" />
<Image Include="res\iconsHD\IronChunk.png" />
<Image Include="res\iconsHD\JadeChamber.png" />
<Image Include="res\iconsHD\JadeplumeTerrorshroom.png" />
<Image Include="res\iconsHD\JueyunChili.png" />
<Image Include="res\iconsHD\Kairagi.png" />
<Image Include="res\iconsHD\KalpalataLotus.png" />
<Image Include="res\iconsHD\KeySigil.png" />
<Image Include="res\iconsHD\KeySigilI.png" />
<Image Include="res\iconsHD\KeySigilII.png" />
<Image Include="res\iconsHD\KeySigilIII.png" />
@ -366,6 +401,7 @@
<Image Include="res\iconsHD\Matsutake.png" />
<Image Include="res\iconsHD\Medaka.png" />
<Image Include="res\iconsHD\Merchant.png" />
<Image Include="res\iconsHD\Millelith.png" />
<Image Include="res\iconsHD\MiniPuzzle.png" />
<Image Include="res\iconsHD\Mint.png" />
<Image Include="res\iconsHD\MistBubble.png" />
@ -377,17 +413,21 @@
<Image Include="res\iconsHD\Mushroom.png" />
<Image Include="res\iconsHD\MysteriousCarvings.png" />
<Image Include="res\iconsHD\NakuWeed.png" />
<Image Include="res\iconsHD\NilotpalaLotus.png" />
<Image Include="res\iconsHD\Nobushi.png" />
<Image Include="res\iconsHD\NoctilucousJade.png" />
<Image Include="res\iconsHD\OceanCrab.png" />
<Image Include="res\iconsHD\Oceanid.png" />
<Image Include="res\iconsHD\OceanidSummons.png" />
<Image Include="res\iconsHD\Onikabuto.png" />
<Image Include="res\iconsHD\Ores.png" />
<Image Include="res\iconsHD\OtogiWood.png" />
<Image Include="res\iconsHD\Padisarah.png" />
<Image Include="res\iconsHD\PaleRedCrab.png" />
<Image Include="res\iconsHD\PerpetualMechanicalArray.png" />
<Image Include="res\iconsHD\PhaseGate.png" />
<Image Include="res\iconsHD\PhilanemoMushroom.png" />
<Image Include="res\iconsHD\Pigeon.png" />
<Image Include="res\iconsHD\Pinecone.png" />
<Image Include="res\iconsHD\PineWood.png" />
<Image Include="res\iconsHD\PlacesofEssenceWorship.png" />
@ -397,6 +437,7 @@
<Image Include="res\iconsHD\PrimoGeovishap.png" />
<Image Include="res\iconsHD\Pufferfish.png" />
<Image Include="res\iconsHD\PurpleShirakodai.png" />
<Image Include="res\iconsHD\PyroAbyssLector.png" />
<Image Include="res\iconsHD\PyroHypostasis.png" />
<Image Include="res\iconsHD\PyroRegisvine.png" />
<Image Include="res\iconsHD\Qingxin.png" />
@ -409,6 +450,9 @@
<Image Include="res\iconsHD\RedHornedLizard.png" />
<Image Include="res\iconsHD\RedTailedWeasel.png" />
<Image Include="res\iconsHD\RemarkableChest.png" />
<Image Include="res\iconsHD\Rifthound.png" />
<Image Include="res\iconsHD\RifthoundWhelp.png" />
<Image Include="res\iconsHD\RishbolandTiger.png" />
<Image Include="res\iconsHD\RockPile.png" />
<Image Include="res\iconsHD\RuinBrazier.png" />
<Image Include="res\iconsHD\RuinGrader.png" />
@ -416,11 +460,14 @@
<Image Include="res\iconsHD\RuinHunter.png" />
<Image Include="res\iconsHD\RuinSentinel.png" />
<Image Include="res\iconsHD\RuinSerpent.png" />
<Image Include="res\iconsHD\RukkhashavaMushrooms.png" />
<Image Include="res\iconsHD\RustyKoi.png" />
<Image Include="res\iconsHD\SacredSakura.png" />
<Image Include="res\iconsHD\SakuraBloom.png" />
<Image Include="res\iconsHD\Salamander.png" />
<Image Include="res\iconsHD\Samachurl.png" />
<Image Include="res\iconsHD\SandbearerWood.png" />
<Image Include="res\iconsHD\SangonomiyaCohort.png" />
<Image Include="res\iconsHD\SangoPearl.png" />
<Image Include="res\iconsHD\Sapphire.png" />
<Image Include="res\iconsHD\ScarletQuartz.png" />
@ -435,6 +482,11 @@
<Image Include="res\iconsHD\Seelie.png" />
<Image Include="res\iconsHD\SeelieCourt.png" />
<Image Include="res\iconsHD\ShadowyHusk.png" />
<Image Include="res\iconsHD\ShaggySumpterBeast.png" />
<Image Include="res\iconsHD\Shogun.png" />
<Image Include="res\iconsHD\ShogunateInfantry.png" />
<Image Include="res\iconsHD\ShrineOfDepth.png" />
<Image Include="res\iconsHD\Signora.png" />
<Image Include="res\iconsHD\SilkFlower.png" />
<Image Include="res\iconsHD\Slime.png" />
<Image Include="res\iconsHD\SmallLampGrass.png" />
@ -447,6 +499,7 @@
<Image Include="res\iconsHD\Snowstrider.png" />
<Image Include="res\iconsHD\SnowWeasel.png" />
<Image Include="res\iconsHD\Specter.png" />
<Image Include="res\iconsHD\Spincrocodile.png" />
<Image Include="res\iconsHD\Squirrel.png" />
<Image Include="res\iconsHD\Starconch.png" />
<Image Include="res\iconsHD\Starshroom.png" />
@ -455,6 +508,8 @@
<Image Include="res\iconsHD\StormBarrier.png" />
<Image Include="res\iconsHD\Stormstone.png" />
<Image Include="res\iconsHD\StrangeTooth.png" />
<Image Include="res\iconsHD\StretchyFungus.png" />
<Image Include="res\iconsHD\SumeruRose.png" />
<Image Include="res\iconsHD\SunCrab.png" />
<Image Include="res\iconsHD\SunnyLoach.png" />
<Image Include="res\iconsHD\SunsetLoach.png" />
@ -462,6 +517,7 @@
<Image Include="res\iconsHD\SweetFlower.png" />
<Image Include="res\iconsHD\SweetFlowerMedaka.png" />
<Image Include="res\iconsHD\SwordHilt.png" />
<Image Include="res\iconsHD\Tartaglia.png" />
<Image Include="res\iconsHD\TeaColoredShirakodai.png" />
<Image Include="res\iconsHD\TeleportWaypoint.png" />
<Image Include="res\iconsHD\TheCruxTheAlcor.png" />
@ -472,6 +528,7 @@
<Image Include="res\iconsHD\TorchPuzzle.png" />
<Image Include="res\iconsHD\TreasureHoarder.png" />
<Image Include="res\iconsHD\TriangularMechanism.png" />
<Image Include="res\iconsHD\Tukan.png" />
<Image Include="res\iconsHD\UnagiMeat.png" />
<Image Include="res\iconsHD\UniqueRocks.png" />
<Image Include="res\iconsHD\UnusualHilichurl.png" />
@ -480,21 +537,48 @@
<Image Include="res\iconsHD\Viewpoint.png" />
<Image Include="res\iconsHD\Violetgrass.png" />
<Image Include="res\iconsHD\VioletIbis.png" />
<Image Include="res\iconsHD\Viparyas.png" />
<Image Include="res\iconsHD\WarmingSeelie.png" />
<Image Include="res\iconsHD\WaveriderWaypointCannotTeleport.png" />
<Image Include="res\iconsHD\Weapon.png" />
<Image Include="res\iconsHD\Weasel.png" />
<Image Include="res\iconsHD\WhirlingFungus.png" />
<Image Include="res\iconsHD\WhiteIronChunk.png" />
<Image Include="res\iconsHD\WhitePigeon.png" />
<Image Include="res\iconsHD\Whopperflower.png" />
<Image Include="res\iconsHD\Wigeon.png" />
<Image Include="res\iconsHD\WindmillMechanism.png" />
<Image Include="res\iconsHD\WindwheelAster.png" />
<Image Include="res\iconsHD\WingedShroom.png" />
<Image Include="res\iconsHD\Wolfhook.png" />
<Image Include="res\iconsHD\WolvesoftheRift.png" />
<Image Include="res\iconsHD\WoodenCrate.png" />
<Image Include="res\iconsHD\WorldQuests.png" />
<Image Include="res\iconsHD\YumemiruWood.png" />
<Image Include="res\iconsHD\ZaytunPeach.png" />
<Image Include="res\icons\AbidingAngelfish.png" />
<Image Include="res\icons\AbyssHerald.png" />
<Image Include="res\icons\Andrius.png" />
<Image Include="res\icons\Azhdaha.png" />
<Image Include="res\icons\Boar.png" />
<Image Include="res\icons\BookPage.png" />
<Image Include="res\icons\Cat.png" />
<Image Include="res\icons\Cicin.png" />
<Image Include="res\icons\Crane.png" />
<Image Include="res\icons\CryoBathysmalVishap.png" />
<Image Include="res\icons\Dendroculus.png" />
<Image Include="res\icons\Dog.png" />
<Image Include="res\icons\DunlinsTooth.png" />
<Image Include="res\icons\Dvalin.png" />
<Image Include="res\icons\Eel.png" />
<Image Include="res\icons\ElectroAbyssLector.png" />
<Image Include="res\icons\ElectroRegisvine.png" />
<Image Include="res\icons\Eremite.png" />
<Image Include="res\icons\Falcon.png" />
<Image Include="res\icons\Finch.png" />
<Image Include="res\icons\Fox.png" />
<Image Include="res\icons\GroundedShroom.png" />
<Image Include="res\icons\HarraFruit.png" />
<Image Include="res\icons\HydroAbyssHerald.png" />
<Image Include="res\icons\AbyssMage.png" />
<Image Include="res\icons\AdornedUnagi.png" />
<Image Include="res\icons\AizenMedaka.png" />
@ -512,7 +596,7 @@
<Image Include="res\icons\BakeDanuki.png" />
<Image Include="res\icons\BambooSegment.png" />
<Image Include="res\icons\BambooShoot.png" />
<Image Include="res\icons\BathysmalVishap.png" />
<Image Include="res\icons\ElectroBathysmalVishap.png" />
<Image Include="res\icons\BathysmalVishapHerd.png" />
<Image Include="res\icons\Berry.png" />
<Image Include="res\icons\Betta.png" />
@ -561,6 +645,7 @@
<Image Include="res\icons\Dendrobium.png" />
<Image Include="res\icons\DivdaRay.png" />
<Image Include="res\icons\Domain.png" />
<Image Include="res\icons\EchoingConch.png" />
<Image Include="res\icons\EightStoneTablets.png" />
<Image Include="res\icons\ElectricConduction.png" />
<Image Include="res\icons\ElectroCrystal.png" />
@ -584,7 +669,7 @@
<Image Include="res\icons\FishingPoint.png" />
<Image Include="res\icons\FlamingFlowerStamen.png" />
<Image Include="res\icons\FloatingAnemoSlime.png" />
<Image Include="res\icons\FloatingHydroFungus.png" />
<Image Include="res\icons\FloatingFungus.png" />
<Image Include="res\icons\FluorescentFungus.png" />
<Image Include="res\icons\FormaloRay.png" />
<Image Include="res\icons\Fowl.png" />
@ -616,10 +701,16 @@
<Image Include="res\icons\Horsetail.png" />
<Image Include="res\icons\HydroHypostasis.png" />
<Image Include="res\icons\Illusion.png" />
<Image Include="res\icons\ImagingConch.png" />
<Image Include="res\icons\InazumaShrineofDepths.png" />
<Image Include="res\icons\Inu.png" />
<Image Include="res\icons\IronChunk.png" />
<Image Include="res\icons\JadeChamber.png" />
<Image Include="res\icons\JadeplumeTerrorshroom.png" />
<Image Include="res\icons\JueyunChili.png" />
<Image Include="res\icons\Kairagi.png" />
<Image Include="res\icons\KalpalataLotus.png" />
<Image Include="res\icons\KeySigil.png" />
<Image Include="res\icons\KeySigilI.png" />
<Image Include="res\icons\KeySigilII.png" />
<Image Include="res\icons\KeySigilIII.png" />
@ -649,6 +740,7 @@
<Image Include="res\icons\Matsutake.png" />
<Image Include="res\icons\Medaka.png" />
<Image Include="res\icons\Merchant.png" />
<Image Include="res\icons\Millelith.png" />
<Image Include="res\icons\MiniPuzzle.png" />
<Image Include="res\icons\Mint.png" />
<Image Include="res\icons\MistBubble.png" />
@ -660,17 +752,21 @@
<Image Include="res\icons\Mushroom.png" />
<Image Include="res\icons\MysteriousCarvings.png" />
<Image Include="res\icons\NakuWeed.png" />
<Image Include="res\icons\NilotpalaLotus.png" />
<Image Include="res\icons\Nobushi.png" />
<Image Include="res\icons\NoctilucousJade.png" />
<Image Include="res\icons\OceanCrab.png" />
<Image Include="res\icons\Oceanid.png" />
<Image Include="res\icons\OceanidSummons.png" />
<Image Include="res\icons\Onikabuto.png" />
<Image Include="res\icons\Ores.png" />
<Image Include="res\icons\OtogiWood.png" />
<Image Include="res\icons\Padisarah.png" />
<Image Include="res\icons\PaleRedCrab.png" />
<Image Include="res\icons\PerpetualMechanicalArray.png" />
<Image Include="res\icons\PhaseGate.png" />
<Image Include="res\icons\PhilanemoMushroom.png" />
<Image Include="res\icons\Pigeon.png" />
<Image Include="res\icons\Pinecone.png" />
<Image Include="res\icons\PineWood.png" />
<Image Include="res\icons\PlacesofEssenceWorship.png" />
@ -680,6 +776,7 @@
<Image Include="res\icons\PrimoGeovishap.png" />
<Image Include="res\icons\Pufferfish.png" />
<Image Include="res\icons\PurpleShirakodai.png" />
<Image Include="res\icons\PyroAbyssLector.png" />
<Image Include="res\icons\PyroHypostasis.png" />
<Image Include="res\icons\PyroRegisvine.png" />
<Image Include="res\icons\Qingxin.png" />
@ -692,6 +789,9 @@
<Image Include="res\icons\RedHornedLizard.png" />
<Image Include="res\icons\RedTailedWeasel.png" />
<Image Include="res\icons\RemarkableChest.png" />
<Image Include="res\icons\Rifthound.png" />
<Image Include="res\icons\RifthoundWhelp.png" />
<Image Include="res\icons\RishbolandTiger.png" />
<Image Include="res\icons\RockPile.png" />
<Image Include="res\icons\RuinBrazier.png" />
<Image Include="res\icons\RuinGrader.png" />
@ -699,11 +799,14 @@
<Image Include="res\icons\RuinHunter.png" />
<Image Include="res\icons\RuinSentinel.png" />
<Image Include="res\icons\RuinSerpent.png" />
<Image Include="res\icons\RukkhashavaMushrooms.png" />
<Image Include="res\icons\RustyKoi.png" />
<Image Include="res\icons\SacredSakura.png" />
<Image Include="res\icons\SakuraBloom.png" />
<Image Include="res\icons\Salamander.png" />
<Image Include="res\icons\Samachurl.png" />
<Image Include="res\icons\SandbearerWood.png" />
<Image Include="res\icons\SangonomiyaCohort.png" />
<Image Include="res\icons\SangoPearl.png" />
<Image Include="res\icons\Sapphire.png" />
<Image Include="res\icons\ScarletQuartz.png" />
@ -718,6 +821,11 @@
<Image Include="res\icons\Seelie.png" />
<Image Include="res\icons\SeelieCourt.png" />
<Image Include="res\icons\ShadowyHusk.png" />
<Image Include="res\icons\ShaggySumpterBeast.png" />
<Image Include="res\icons\Shogun.png" />
<Image Include="res\icons\ShogunateInfantry.png" />
<Image Include="res\icons\ShrineOfDepth.png" />
<Image Include="res\icons\Signora.png" />
<Image Include="res\icons\SilkFlower.png" />
<Image Include="res\icons\Slime.png" />
<Image Include="res\icons\SmallLampGrass.png" />
@ -730,6 +838,7 @@
<Image Include="res\icons\Snowstrider.png" />
<Image Include="res\icons\SnowWeasel.png" />
<Image Include="res\icons\Specter.png" />
<Image Include="res\icons\Spincrocodile.png" />
<Image Include="res\icons\Squirrel.png" />
<Image Include="res\icons\Starconch.png" />
<Image Include="res\icons\Starshroom.png" />
@ -738,6 +847,8 @@
<Image Include="res\icons\StormBarrier.png" />
<Image Include="res\icons\Stormstone.png" />
<Image Include="res\icons\StrangeTooth.png" />
<Image Include="res\icons\StretchyFungus.png" />
<Image Include="res\icons\SumeruRose.png" />
<Image Include="res\icons\SunCrab.png" />
<Image Include="res\icons\SunnyLoach.png" />
<Image Include="res\icons\SunsetLoach.png" />
@ -745,6 +856,7 @@
<Image Include="res\icons\SweetFlower.png" />
<Image Include="res\icons\SweetFlowerMedaka.png" />
<Image Include="res\icons\SwordHilt.png" />
<Image Include="res\icons\Tartaglia.png" />
<Image Include="res\icons\TeaColoredShirakodai.png" />
<Image Include="res\icons\TeleportWaypoint.png" />
<Image Include="res\icons\TheCruxTheAlcor.png" />
@ -755,6 +867,7 @@
<Image Include="res\icons\TorchPuzzle.png" />
<Image Include="res\icons\TreasureHoarder.png" />
<Image Include="res\icons\TriangularMechanism.png" />
<Image Include="res\icons\Tukan.png" />
<Image Include="res\icons\UnagiMeat.png" />
<Image Include="res\icons\UniqueRocks.png" />
<Image Include="res\icons\UnusualHilichurl.png" />
@ -763,19 +876,25 @@
<Image Include="res\icons\Viewpoint.png" />
<Image Include="res\icons\Violetgrass.png" />
<Image Include="res\icons\VioletIbis.png" />
<Image Include="res\icons\Viparyas.png" />
<Image Include="res\icons\WarmingSeelie.png" />
<Image Include="res\icons\WaveriderWaypointCannotTeleport.png" />
<Image Include="res\icons\Weapon.png" />
<Image Include="res\icons\Weasel.png" />
<Image Include="res\icons\WhirlingFungus.png" />
<Image Include="res\icons\WhiteIronChunk.png" />
<Image Include="res\icons\WhitePigeon.png" />
<Image Include="res\icons\Whopperflower.png" />
<Image Include="res\icons\Wigeon.png" />
<Image Include="res\icons\WindmillMechanism.png" />
<Image Include="res\icons\WindwheelAster.png" />
<Image Include="res\icons\WingedShroom.png" />
<Image Include="res\icons\Wolfhook.png" />
<Image Include="res\icons\WolvesoftheRift.png" />
<Image Include="res\icons\WoodenCrate.png" />
<Image Include="res\icons\WorldQuests.png" />
<Image Include="res\icons\YumemiruWood.png" />
<Image Include="res\icons\ZaytunPeach.png" />
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
@ -858,7 +977,7 @@
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch-il2cpp.h</PrecompiledHeaderFile>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)vendor/protobuf/src/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<Optimization>Disabled</Optimization>
@ -896,7 +1015,7 @@
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch-il2cpp.h</PrecompiledHeaderFile>
<LanguageStandard>stdcpp20</LanguageStandard>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)vendor/protobuf/src/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<Optimization>MaxSpeed</Optimization>
<WholeProgramOptimization>true</WholeProgramOptimization>
<DebugInformationFormat>None</DebugInformationFormat>
@ -933,7 +1052,7 @@ powershell -nop -c "&amp; {sleep 15}"</Command>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch-il2cpp.h</PrecompiledHeaderFile>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)vendor/protobuf/src/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<Optimization>MaxSpeed</Optimization>
<WholeProgramOptimization>true</WholeProgramOptimization>
<DebugInformationFormat>None</DebugInformationFormat>

View File

@ -213,7 +213,7 @@
<ClInclude Include="src\user\cheat\visuals\Browser.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\visuals\EnablePeaking.h">
<ClInclude Include="src\user\cheat\visuals\EnablePeeking.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\visuals\TextureChanger.h">
@ -246,6 +246,15 @@
<ClInclude Include="src\user\cheat\player\AutoRun.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\world\FreezeEnemies.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\world\CustomWeather.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\visuals\AnimationChanger.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Font Include="res\Ruda-Bold.ttf" />
@ -417,7 +426,7 @@
<ClCompile Include="src\user\cheat\visuals\Browser.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\visuals\EnablePeaking.cpp">
<ClCompile Include="src\user\cheat\visuals\EnablePeeking.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\visuals\TextureChanger.cpp">
@ -450,6 +459,15 @@
<ClCompile Include="src\user\cheat\player\AutoRun.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\world\FreezeEnemies.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\world\CustomWeather.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\visuals\AnimationChanger.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\res.rc">
@ -462,6 +480,7 @@
<None Include="res\map_teyvat.json" />
<None Include="res\map_undeground_mines.json" />
<None Include="res\assembly_checksum.json" />
<None Include="res\map_golden_apple_archipelago.json" />
</ItemGroup>
<ItemGroup>
<Image Include="icons\Anemoculus.png">
@ -473,7 +492,7 @@
<Image Include="res\iconsHD\AbidingAngelfish.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\AbyssHerald.png">
<Image Include="res\iconsHD\HydroAbyssHerald.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\AbyssMage.png">
@ -527,7 +546,7 @@
<Image Include="res\iconsHD\BambooShoot.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\BathysmalVishap.png">
<Image Include="res\iconsHD\ElectroBathysmalVishap.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\BathysmalVishapHerd.png">
@ -743,7 +762,7 @@
<Image Include="res\iconsHD\FloatingAnemoSlime.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\FloatingHydroFungus.png">
<Image Include="res\iconsHD\FloatingFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\FluorescentFungus.png">
@ -1322,7 +1341,7 @@
<Image Include="res\icons\AbidingAngelfish.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\AbyssHerald.png">
<Image Include="res\icons\HydroAbyssHerald.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\AbyssMage.png">
@ -1373,7 +1392,7 @@
<Image Include="res\icons\BambooShoot.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\BathysmalVishap.png">
<Image Include="res\icons\ElectroBathysmalVishap.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\BathysmalVishapHerd.png">
@ -1589,7 +1608,7 @@
<Image Include="res\icons\FloatingAnemoSlime.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\FloatingHydroFungus.png">
<Image Include="res\icons\FloatingFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\FluorescentFungus.png">
@ -2165,5 +2184,341 @@
<Image Include="res\icons\YumemiruWood.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\EchoingConch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ImagingConch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\EchoingConch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ImagingConch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Wigeon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Andrius.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Azhdaha.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Boar.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Cat.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Cicin.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Crane.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\CryoBathysmalVishap.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Dendroculus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Dog.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\DunlinsTooth.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Dvalin.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Eel.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ElectroAbyssLector.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ElectroRegisvine.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Falcon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Finch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Fox.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Inu.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\KeySigil.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Millelith.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Pigeon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\PyroAbyssLector.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Rifthound.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\RifthoundWhelp.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Salamander.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Shogun.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ShogunateInfantry.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ShrineOfDepth.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Signora.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Tartaglia.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Weasel.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Cat.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Cicin.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Crane.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\CryoBathysmalVishap.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Dendroculus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Dog.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\DunlinsTooth.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Dvalin.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Eel.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ElectroAbyssLector.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ElectroRegisvine.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Falcon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Finch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Fox.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Inu.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\KeySigil.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Millelith.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Pigeon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\PyroAbyssLector.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Rifthound.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\RifthoundWhelp.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Salamander.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Shogun.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ShogunateInfantry.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ShrineOfDepth.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Signora.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Tartaglia.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Weasel.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Wigeon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Andrius.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Azhdaha.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Boar.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Kairagi.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Kairagi.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\SangonomiyaCohort.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\SangonomiyaCohort.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\SumeruRose.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Tukan.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Viparyas.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ZaytunPeach.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Eremite.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\HarraFruit.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\JadeplumeTerrorshroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\KalpalataLotus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\NilotpalaLotus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Padisarah.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\RukkhashavaMushrooms.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Tukan.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Viparyas.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ZaytunPeach.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Eremite.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\HarraFruit.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\JadeplumeTerrorshroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\KalpalataLotus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\NilotpalaLotus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Padisarah.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\RukkhashavaMushrooms.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\SumeruRose.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\WhirlingFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\WingedShroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\GroundedShroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\StretchyFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\WhirlingFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\WingedShroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\GroundedShroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\StretchyFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\OceanidSummons.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\RishbolandTiger.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ShaggySumpterBeast.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Spincrocodile.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\OceanidSummons.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\RishbolandTiger.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ShaggySumpterBeast.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Spincrocodile.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\BookPage.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\BookPage.png">
<Filter>Resource Files</Filter>
</Image>
</ItemGroup>
</Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 868 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Some files were not shown because too many files have changed in this diff Show More