mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-26 20:12:58 +00:00
move SoundEngine back to app
Some checks are pending
Some checks are pending
This commit is contained in:
parent
d87dd6ae72
commit
8552634614
|
|
@ -1,4 +1,4 @@
|
|||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
|
||||
bool ConsoleSoundEngine::GetIsPlayingStreamingCDMusic() {
|
||||
return m_bIsPlayingStreamingCDMusic;
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "SoundTypes.h"
|
||||
|
||||
class File;
|
||||
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "app/linux/Iggy/include/rrCore.h"
|
||||
#include "app/linux/LinuxGame.h"
|
||||
#include "java/Random.h"
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@ class Random;
|
|||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "app/linux/Iggy/include/rrCore.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/PlatformTypes.h"
|
||||
|
||||
// Forward-declare the miniaudio backing state. The full struct lives in
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
|
||||
const char* ConsoleSoundEngine::wchSoundNames[eSoundType_MAX] = {
|
||||
"mob/chicken/chicken", // eSoundType_MOB_CHICKEN_AMBIENT
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include "app/common/App_structs.h"
|
||||
#include "app/common/ArchiveManager.h"
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "app/common/BannedListManager.h"
|
||||
#include "app/common/DLC/DLCManager.h"
|
||||
#include "app/common/DLCController.h"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "UIEnums.h"
|
||||
#include "UIStructs.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/storage/storage.h"
|
||||
|
||||
// 4J Stu - An interface class that defines all the public functions that we use
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
#include "minecraft/client/multiplayer/MultiPlayerGameMode.h"
|
||||
#include "minecraft/client/multiplayer/MultiPlayerLocalPlayer.h"
|
||||
#include "minecraft/client/player/LocalPlayer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/HtmlString.h"
|
||||
#include "minecraft/world/entity/player/Inventory.h"
|
||||
#include "minecraft/world/inventory/AbstractContainerMenu.h"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/client/multiplayer/MultiPlayerGameMode.h"
|
||||
#include "minecraft/client/player/LocalPlayer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/world/entity/player/Inventory.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/client/multiplayer/MultiPlayerGameMode.h"
|
||||
#include "minecraft/client/multiplayer/MultiPlayerLocalPlayer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/SimpleContainer.h"
|
||||
#include "minecraft/world/entity/Painting.h"
|
||||
#include "minecraft/world/entity/animal/EntityHorse.h"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
#endif
|
||||
#include "app/linux/Iggy/include/rrCore.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "util/StringHelpers.h"
|
||||
|
||||
UIControl_Slider::UIControl_Slider() {
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#include "minecraft/client/skins/TexturePack.h"
|
||||
#include "minecraft/client/skins/TexturePackRepository.h"
|
||||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/level/LevelSettings.h"
|
||||
#include "minecraft/world/level/chunk/ChunkSource.h"
|
||||
#include "platform/NetTypes.h"
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/GameTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/PlatformTypes.h"
|
||||
#include "platform/input/input.h"
|
||||
#include "platform/profile/profile.h"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/GameTypes.h"
|
||||
#include "minecraft/network/platform/SessionInfo.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
#include "minecraft/world/level/LevelSettings.h"
|
||||
#include "platform/PlatformTypes.h"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/GameHostOptions.h"
|
||||
#include "minecraft/GameTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/input/input.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "platform/renderer/renderer.h"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
#include "app/linux/LinuxGame.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/Console_Debug_enum.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/item/Item.h"
|
||||
#include "minecraft/world/item/ItemInstance.h"
|
||||
#include "minecraft/world/level/tile/Tile.h"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#include "minecraft/client/skins/TexturePack.h"
|
||||
#include "minecraft/client/skins/TexturePackRepository.h"
|
||||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/level/GameRules/LevelGenerationOptions.h"
|
||||
#include "minecraft/world/level/LevelSettings.h"
|
||||
#include "platform/NetTypes.h"
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
#include "minecraft/client/skins/TexturePackRepository.h"
|
||||
#include "minecraft/network/platform/SessionInfo.h"
|
||||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/level/GameRules/LevelGenerationOptions.h"
|
||||
#include "minecraft/world/level/LevelSettings.h"
|
||||
#include "platform/NetTypes.h"
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
#include "minecraft/client/gui/Font.h"
|
||||
#include "minecraft/client/gui/ScreenSizeCalculator.h"
|
||||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/NetTypes.h"
|
||||
#include "platform/PlatformTypes.h"
|
||||
#include "platform/profile/profile.h"
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/GameTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "strings.h"
|
||||
|
||||
UIScene_NewUpdateMessage::UIScene_NewUpdateMessage(int iPad, void* initData,
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
#include "app/linux/LinuxGame.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/GameTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/PlatformTypes.h"
|
||||
#include "platform/input/input.h"
|
||||
#include "platform/profile/ProfileConstants.h"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#include "app/linux/LinuxGame.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/GameTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "strings.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/client/multiplayer/MultiPlayerLocalPlayer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/entity/player/Abilities.h"
|
||||
#include "platform/input/input.h"
|
||||
#include "strings.h"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
#include "app/linux/LinuxGame.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "strings.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
#include "app/linux/LinuxGame.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "strings.h"
|
||||
#include "util/StringHelpers.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#include "app/linux/LinuxGame.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "strings.h"
|
||||
|
||||
// strings for buttons in the list
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#include "app/linux/LinuxGame.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "strings.h"
|
||||
|
||||
// strings for buttons in the list
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
#include "app/linux/LinuxGame.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "strings.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "platform/renderer/renderer.h"
|
||||
#include "strings.h"
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
#include "minecraft/Minecraft_Macros.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/client/model/SkinBox.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/profile/ProfileConstants.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "platform/renderer/renderer.h"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
#include "app/linux/Linux_UIController.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/client/player/LocalPlayer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/SimpleContainer.h"
|
||||
#include "platform/XboxStubs.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
#include "minecraft/client/multiplayer/MultiPlayerLocalPlayer.h"
|
||||
#include "minecraft/network/packet/KickPlayerPacket.h"
|
||||
#include "minecraft/network/platform/NetworkPlayerInterface.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/PlatformTypes.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "strings.h"
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
#include "minecraft/client/skins/TexturePackRepository.h"
|
||||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/server/ServerAction.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "strings.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
#include "minecraft/client/multiplayer/MultiPlayerLevel.h"
|
||||
#include "minecraft/client/multiplayer/MultiPlayerLocalPlayer.h"
|
||||
#include "minecraft/network/packet/SignUpdatePacket.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/level/tile/entity/SignTileEntity.h"
|
||||
#include "platform/input/input.h"
|
||||
#include "strings.h"
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
#include "minecraft/network/packet/GameCommandPacket.h"
|
||||
#include "minecraft/network/platform/NetworkPlayerInterface.h"
|
||||
#include "minecraft/server/commands/TeleportCommand.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "strings.h"
|
||||
|
||||
UIScene_TeleportMenu::UIScene_TeleportMenu(int iPad, void* initData,
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
#include "app/common/UI/All Platforms/UIStructs.h"
|
||||
#include "app/common/UI/Controls/UIControl.h"
|
||||
#include "app/linux/Iggy/include/rrCore.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/PlatformTypes.h"
|
||||
#include "platform/input/input.h"
|
||||
#include "platform/renderer/renderer.h"
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
#include "minecraft/client/Lighting.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/client/renderer/entity/ItemRenderer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/entity/player/Inventory.h"
|
||||
#include "minecraft/world/item/ItemInstance.h"
|
||||
#include "util/StringHelpers.h"
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ common/AppGameServices.cpp
|
|||
common/ArchiveManager.cpp
|
||||
common/Audio/SoundEngine.cpp
|
||||
common/Audio/SoundNames.cpp
|
||||
common/Audio/ConsoleSoundEngine.cpp
|
||||
common/BannedListManager.cpp
|
||||
common/ConsoleGameMode.cpp
|
||||
common/DLC/DLCAudioFile.cpp
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
#include "minecraft/network/packet/DisconnectPacket.h"
|
||||
#include "minecraft/network/packet/Packet.h"
|
||||
#include "minecraft/network/platform/NetworkPlayerInterface.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/Stats.h"
|
||||
#include "minecraft/stats/StatsCounter.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#include "Options.h"
|
||||
|
||||
#include "KeyMapping.h"
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "java/File.h"
|
||||
#include "java/InputOutputStream/BufferedReader.h"
|
||||
#include "java/InputOutputStream/DataOutputStream.h"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#include "Screen.h"
|
||||
|
||||
#include "Button.h"
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/IGameServices.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
#include "minecraft/network/INetworkService.h"
|
||||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/server/ServerAction.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "platform/input/input.h"
|
||||
#include "platform/profile/profile.h"
|
||||
#include "platform/stubs.h"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "StatsScreen.h"
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/client/gui/Button.h"
|
||||
#include "minecraft/client/gui/Font.h"
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
#include "minecraft/client/renderer/entity/ItemRenderer.h"
|
||||
#include "minecraft/locale/I18n.h"
|
||||
#include "minecraft/locale/Language.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/ItemStat.h"
|
||||
#include "minecraft/stats/Stat.h"
|
||||
#include "minecraft/stats/Stats.h"
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@
|
|||
#include "minecraft/network/packet/XZPacket.h"
|
||||
#include "minecraft/network/platform/NetworkPlayerInterface.h"
|
||||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/world/SimpleContainer.h"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
#include "ClientConnection.h"
|
||||
#include "MultiPlayerLevel.h"
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "java/Class.h"
|
||||
#include "minecraft/IGameServices.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
#include "ClientConnection.h"
|
||||
#include "MultiPlayerChunkCache.h"
|
||||
#include "MultiPlayerLocalPlayer.h"
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "java/JavaMath.h"
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/Console_Debug_enum.h"
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
#include "minecraft/client/particle/Particle.h"
|
||||
#include "minecraft/client/particle/ParticleEngine.h"
|
||||
#include "minecraft/client/renderer/Tesselator.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/entity/LivingEntity.h"
|
||||
#include "minecraft/world/item/FireworksItem.h"
|
||||
#include "minecraft/world/level/Level.h"
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
// 4J Stu - Added for tutorial callbacks
|
||||
#include "PlatformTypes.h"
|
||||
#include "Pos.h"
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "platform/profile/ProfileConstants.h"
|
||||
#include "minecraft/world/tutorial/ITutorial.h"
|
||||
#include "app/linux/Linux_UIController.h"
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
#include "minecraft/commands/CommandsEnum.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/network/INetworkService.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/Achievement.h"
|
||||
#include "minecraft/stats/CommonStats.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@
|
|||
#include "minecraft/client/resources/ResourceLocation.h"
|
||||
#include "minecraft/client/skins/TexturePack.h"
|
||||
#include "minecraft/client/skins/TexturePackRepository.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/SmoothFloat.h"
|
||||
#include "minecraft/world/effect/MobEffect.h"
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
#include "Chunk.h"
|
||||
#include "GameRenderer.h"
|
||||
#include "Tesselator.h"
|
||||
#include "minecraft/sounds/ConsoleSoundEngine.h"
|
||||
#include "app/common/Audio/ConsoleSoundEngine.h"
|
||||
#include "java/Class.h"
|
||||
#include "java/JavaMath.h"
|
||||
#include "java/Random.h"
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
#include "minecraft/client/resources/Colours/ColourTable.h"
|
||||
#include "minecraft/client/resources/ResourceLocation.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/IconRegister.h"
|
||||
|
|
|
|||
|
|
@ -396,7 +396,6 @@ server/level/TrackedEntity.cpp
|
|||
server/network/PendingConnection.cpp
|
||||
server/network/PlayerConnection.cpp
|
||||
server/network/ServerConnection.cpp
|
||||
sounds/ConsoleSoundEngine.cpp
|
||||
stats/Achievement.cpp
|
||||
stats/Achievements.cpp
|
||||
stats/CommonStats.cpp
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/server/PlayerList.h"
|
||||
#include "minecraft/server/level/ServerLevel.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
#include "java/JavaMath.h"
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
#include "minecraft/network/packet/TakeItemEntityPacket.h"
|
||||
#include "minecraft/server/level/EntityTracker.h"
|
||||
#include "minecraft/server/level/ServerLevel.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/Pos.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/entity/SyncedEntityData.h"
|
||||
#include "minecraft/world/entity/ai/attributes/AttributeInstance.h"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include <memory>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/entity/ai/attributes/AttributeInstance.h"
|
||||
#include "minecraft/world/entity/ai/goal/BreedGoal.h"
|
||||
#include "minecraft/world/entity/ai/goal/FloatGoal.h"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include <memory>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/world/entity/ai/attributes/AttributeInstance.h"
|
||||
#include "minecraft/world/entity/ai/goal/BreedGoal.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/client/renderer/Textures.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/client/Minecraft.h"
|
||||
#include "minecraft/client/multiplayer/MultiPlayerLocalPlayer.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#include <string>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
#include "minecraft/world/entity/SyncedEntityData.h"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
#include <string>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/world/entity/AgeableMob.h"
|
||||
#include "minecraft/world/entity/EntityEvent.h"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/LivingEntity.h"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/Pos.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
#include "SharedConstants.h"
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/server/MinecraftServer.h"
|
||||
#include "minecraft/server/PlayerList.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
#include "minecraft/world/entity/global/GlobalEntity.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#include "SharedConstants.h"
|
||||
#include "java/JavaMath.h"
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/item/Minecart.h"
|
||||
#include "minecraft/world/item/ItemInstance.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
#include "minecraft/world/entity/Mob.h"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#include <string>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/IGameServices.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/damageSource/EntityDamageSource.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/network/packet/ChatPacket.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
#include "minecraft/world/entity/ai/attributes/AttributeInstance.h"
|
||||
#include "minecraft/world/entity/monster/SharedMonsterAttributes.h"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/IGameServices.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/Facing.h"
|
||||
#include "minecraft/IGameServices.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/damageSource/EntityDamageSource.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/IGameServices.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
#include "minecraft/world/effect/MobEffect.h"
|
||||
#include "minecraft/world/effect/MobEffectInstance.h"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/effect/MobEffect.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "SharedConstants.h"
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/IGameServices.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/effect/MobEffect.h"
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
#include "minecraft/client/model/HumanoidModel.h"
|
||||
#include "minecraft/client/renderer/Textures.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/Difficulty.h"
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
#include "minecraft/network/packet/GameEventPacket.h"
|
||||
#include "minecraft/server/level/ServerPlayer.h"
|
||||
#include "minecraft/server/network/PlayerConnection.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
#include "minecraft/world/entity/EntityEvent.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include <memory>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/IconRegister.h"
|
||||
#include "minecraft/world/entity/player/Abilities.h"
|
||||
#include "minecraft/world/entity/player/Inventory.h"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
#include "minecraft/network/packet/ChatPacket.h"
|
||||
#include "minecraft/server/level/ServerPlayer.h"
|
||||
#include "minecraft/server/network/PlayerConnection.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#include <memory>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/entity/player/Abilities.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
#include "minecraft/world/entity/projectile/ThrownEgg.h"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#include "java/Random.h"
|
||||
#include "minecraft/Direction.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/world/entity/player/Abilities.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include <memory>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/entity/player/Abilities.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
#include "minecraft/world/entity/projectile/ThrownEnderpearl.h"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include <memory>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/entity/player/Abilities.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
#include "minecraft/world/entity/projectile/ThrownExpBottle.h"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#include <string>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/IconRegister.h"
|
||||
#include "minecraft/world/entity/player/Abilities.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#include <string>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/IconRegister.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
#include "minecraft/world/entity/projectile/FishingHook.h"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include <memory>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/stats/GenericStats.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
#include "minecraft/world/item/Item.h"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/effect/MobEffectInstance.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
#include "minecraft/world/food/FoodConstants.h"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#include "minecraft/GameEnums.h"
|
||||
#include "minecraft/IGameServices.h"
|
||||
#include "minecraft/SharedConstants.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/HtmlString.h"
|
||||
#include "minecraft/world/IconRegister.h"
|
||||
#include "minecraft/world/effect/MobEffect.h"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include <memory>
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/entity/player/Abilities.h"
|
||||
#include "minecraft/world/entity/player/Player.h"
|
||||
#include "minecraft/world/entity/projectile/Snowball.h"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#include "ThornsEnchantment.h"
|
||||
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
#include "minecraft/world/entity/Entity.h"
|
||||
#include "minecraft/world/entity/LivingEntity.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#include "java/Class.h"
|
||||
#include "java/Random.h"
|
||||
#include "minecraft/core/particles/ParticleTypes.h"
|
||||
#include "minecraft/sounds/SoundTypes.h"
|
||||
#include "app/common/Audio/SoundTypes.h"
|
||||
#include "minecraft/util/Log.h"
|
||||
#include "minecraft/util/Mth.h"
|
||||
#include "minecraft/world/damageSource/DamageSource.h"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue