mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
Move sources to source_groups and ditch more old VS files
This commit is contained in:
parent
eb8c9467f0
commit
9210a2c8ac
|
|
@ -40,25 +40,24 @@ set(MINECRAFT_SHARED_DEFINES
|
||||||
_WINDOWS64
|
_WINDOWS64
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set(WORLD_DIR "${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.World")
|
||||||
|
set(CLIENT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client")
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# Sources
|
# Sources
|
||||||
# ---
|
# ---
|
||||||
include("${CMAKE_CURRENT_SOURCE_DIR}/cmake/WorldSources.cmake")
|
add_subdirectory(Minecraft.World)
|
||||||
include("${CMAKE_CURRENT_SOURCE_DIR}/cmake/ClientSources.cmake")
|
list(TRANSFORM MINECRAFT_WORLD_SOURCES PREPEND "${WORLD_DIR}/")
|
||||||
|
add_subdirectory(Minecraft.Client)
|
||||||
list(TRANSFORM MINECRAFT_WORLD_SOURCES PREPEND "${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.World/")
|
list(TRANSFORM MINECRAFT_CLIENT_SOURCES PREPEND "${CLIENT_DIR}/")
|
||||||
list(TRANSFORM MINECRAFT_CLIENT_SOURCES PREPEND "${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/")
|
|
||||||
list(APPEND MINECRAFT_CLIENT_SOURCES
|
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Xbox/MinecraftWindows.rc"
|
|
||||||
)
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# MinecraftWorld
|
# MinecraftWorld
|
||||||
# ---
|
# ---
|
||||||
add_library(MinecraftWorld STATIC ${MINECRAFT_WORLD_SOURCES})
|
add_library(MinecraftWorld STATIC ${MINECRAFT_WORLD_SOURCES})
|
||||||
target_include_directories(MinecraftWorld
|
target_include_directories(MinecraftWorld
|
||||||
PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.World"
|
PRIVATE "${WORLD_DIR}"
|
||||||
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.World/x64headers"
|
PUBLIC "${WORLD_DIR}/x64headers"
|
||||||
)
|
)
|
||||||
target_compile_definitions(MinecraftWorld PRIVATE
|
target_compile_definitions(MinecraftWorld PRIVATE
|
||||||
${MINECRAFT_SHARED_DEFINES}
|
${MINECRAFT_SHARED_DEFINES}
|
||||||
|
|
@ -73,9 +72,9 @@ endif()
|
||||||
# ---
|
# ---
|
||||||
add_executable(MinecraftClient WIN32 ${MINECRAFT_CLIENT_SOURCES})
|
add_executable(MinecraftClient WIN32 ${MINECRAFT_CLIENT_SOURCES})
|
||||||
target_include_directories(MinecraftClient PRIVATE
|
target_include_directories(MinecraftClient PRIVATE
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client"
|
"${CLIENT_DIR}"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/Iggy/include"
|
"${CLIENT_DIR}/Windows64/Iggy/include"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Xbox/Sentient/Include"
|
"${CLIENT_DIR}/Xbox/Sentient/Include"
|
||||||
)
|
)
|
||||||
target_compile_definitions(MinecraftClient PRIVATE
|
target_compile_definitions(MinecraftClient PRIVATE
|
||||||
${MINECRAFT_SHARED_DEFINES}
|
${MINECRAFT_SHARED_DEFINES}
|
||||||
|
|
@ -97,18 +96,18 @@ target_link_libraries(MinecraftClient PRIVATE
|
||||||
XInput9_1_0
|
XInput9_1_0
|
||||||
wsock32
|
wsock32
|
||||||
legacy_stdio_definitions
|
legacy_stdio_definitions
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/Iggy/lib/iggy_w64.lib"
|
"${CLIENT_DIR}/Windows64/Iggy/lib/iggy_w64.lib"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/Iggy/lib/iggyperfmon_w64.lib"
|
"${CLIENT_DIR}/Windows64/Iggy/lib/iggyperfmon_w64.lib"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/Iggy/lib/iggyexpruntime_w64.lib"
|
"${CLIENT_DIR}/Windows64/Iggy/lib/iggyexpruntime_w64.lib"
|
||||||
$<$<CONFIG:Debug>: # Debug 4J libraries
|
$<$<CONFIG:Debug>: # Debug 4J libraries
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/4JLibs/libs/4J_Input_d.lib"
|
"${CLIENT_DIR}/Windows64/4JLibs/libs/4J_Input_d.lib"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/4JLibs/libs/4J_Storage_d.lib"
|
"${CLIENT_DIR}/Windows64/4JLibs/libs/4J_Storage_d.lib"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/4JLibs/libs/4J_Render_PC_d.lib"
|
"${CLIENT_DIR}/Windows64/4JLibs/libs/4J_Render_PC_d.lib"
|
||||||
>
|
>
|
||||||
$<$<NOT:$<CONFIG:Debug>>: # Release 4J libraries
|
$<$<NOT:$<CONFIG:Debug>>: # Release 4J libraries
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/4JLibs/libs/4J_Input.lib"
|
"${CLIENT_DIR}/Windows64/4JLibs/libs/4J_Input.lib"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/4JLibs/libs/4J_Storage.lib"
|
"${CLIENT_DIR}/Windows64/4JLibs/libs/4J_Storage.lib"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.Client/Windows64/4JLibs/libs/4J_Render_PC.lib"
|
"${CLIENT_DIR}/Windows64/4JLibs/libs/4J_Render_PC.lib"
|
||||||
>
|
>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,4 +27,4 @@ We request that all PRs made for this repo use our PR template to the fullest ex
|
||||||
# Visual Studio
|
# Visual Studio
|
||||||
Visual Studio can directly open the `CMakeLists.txt` file in the root of the repo, just open the folder you cloned the repo into and it should automatically detect the `CMakeLists.txt` and set up the project.
|
Visual Studio can directly open the `CMakeLists.txt` file in the root of the repo, just open the folder you cloned the repo into and it should automatically detect the `CMakeLists.txt` and set up the project.
|
||||||
|
|
||||||
We also suggest pressing 'Switch between solutions and available views' in the solution explorer toolbar to switch to the 'CMake Targets View', which is more intuitive for navigating the project.
|
We also suggest right clicking a folder in the solution explorer and switching to the 'CMake Targets View', which is more intuitive for navigating the project.
|
||||||
2534
Minecraft.Client/CMakeLists.txt
Normal file
2534
Minecraft.Client/CMakeLists.txt
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,136 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="IggyMedia">
|
|
||||||
<UniqueIdentifier>{55c7ab2e-b3e5-4aed-9ffe-3308591d9c34}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Strings">
|
|
||||||
<UniqueIdentifier>{eaa0eb72-0b27-4080-ad53-f68e42f37ba8}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Archive">
|
|
||||||
<UniqueIdentifier>{711ad95b-eb56-4e18-b001-34ad7b8075a3}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Archive\Win64">
|
|
||||||
<UniqueIdentifier>{1432ec3d-c5d0-46da-91b6-e7737095a97e}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Archive\PS4">
|
|
||||||
<UniqueIdentifier>{4b2aeaf1-04d7-454d-b2d9-08364799831c}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Archive\PS3">
|
|
||||||
<UniqueIdentifier>{4b0eaef6-fa2f-4605-b0da-a81ffb5659bc}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Archive\Durango">
|
|
||||||
<UniqueIdentifier>{bf1c74da-21f1-4bdd-98ed-83457946e4cc}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="Media\ChestMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\CreateWorldMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\CreativeMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\DebugMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\FullscreenProgress720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\HUD720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\InventoryMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\media.arc">
|
|
||||||
<Filter>Archive</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\languages.loc">
|
|
||||||
<Filter>Archive</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\skin.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\MainMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\Panorama720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\LoadOrJoinMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\LaunchMoreOptionsMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\LoadMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Media\PauseMenu720.swf">
|
|
||||||
<Filter>IggyMedia</Filter>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<EmbeddedResource Include="Media\strings.resx">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</EmbeddedResource>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Text Include="Media\strings_begin.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_Controls.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_Credits.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_Descriptions.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_end.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_HowToPlay.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_ItemsAndTiles.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_Misc.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_PotionsAndEnchantments.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_Tips.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_Tooltips.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\strings_Tutorial.txt">
|
|
||||||
<Filter>Strings</Filter>
|
|
||||||
</Text>
|
|
||||||
<Text Include="Media\media.txt">
|
|
||||||
<Filter>Archive</Filter>
|
|
||||||
</Text>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\Durango\strings.h">
|
|
||||||
<Filter>Archive\Durango</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\PS3\strings.h">
|
|
||||||
<Filter>Archive\PS3</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\Orbis\strings.h">
|
|
||||||
<Filter>Archive\PS4</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\Windows64\strings.h">
|
|
||||||
<Filter>Archive\Win64</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,114 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Resource Files">
|
|
||||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
|
||||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Shared">
|
|
||||||
<UniqueIdentifier>{ab02d5da-7fb3-494b-a636-03764d9a8acd}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Tutorial">
|
|
||||||
<UniqueIdentifier>{e1a87048-bca2-46e6-a234-91d7d64eb983}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Tutorial\schematics">
|
|
||||||
<UniqueIdentifier>{da425f4a-cf76-48e8-87cb-d9fda0f42365}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Tutorial\Loc">
|
|
||||||
<UniqueIdentifier>{c0ba5f53-4881-495e-8158-5d87f379426d}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Tutorial\Loc\Microsoft">
|
|
||||||
<UniqueIdentifier>{61651432-41a1-42f0-a853-c7795d813418}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Packs">
|
|
||||||
<UniqueIdentifier>{e194e42b-1c9b-4e35-9a4b-dabd68eab3e0}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="Tutorial\GameRules.xml">
|
|
||||||
<Filter>Tutorial</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\en-EN.lang">
|
|
||||||
<Filter>Tutorial\Loc</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\de-DE.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\es-ES.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\fr-FR.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\it-IT.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\ja-JP.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\ko-KR.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\pt-BR.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\pt-PT.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\zh-CHT.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\Tutorial.pck">
|
|
||||||
<Filter>Packs</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\JungleTemp.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Lava.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\MinecraftSign.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Mushroom.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Ship.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Spider.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Stairs.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\StoneCircle.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Tower.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Pyramid.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\CasTes1.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\CasTes2.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Boat.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleBottom.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleFront.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleLeft.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleMain.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleRight.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleTop.sch" />
|
|
||||||
<None Include="Tutorial\schematics\Tutorial.sch" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xsd Include="GameRulesDefinition.xsd">
|
|
||||||
<Filter>Shared</Filter>
|
|
||||||
</Xsd>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,114 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Resource Files">
|
|
||||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
|
||||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Shared">
|
|
||||||
<UniqueIdentifier>{ab02d5da-7fb3-494b-a636-03764d9a8acd}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Tutorial">
|
|
||||||
<UniqueIdentifier>{e1a87048-bca2-46e6-a234-91d7d64eb983}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Tutorial\schematics">
|
|
||||||
<UniqueIdentifier>{da425f4a-cf76-48e8-87cb-d9fda0f42365}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Tutorial\Loc">
|
|
||||||
<UniqueIdentifier>{c0ba5f53-4881-495e-8158-5d87f379426d}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Tutorial\Loc\Microsoft">
|
|
||||||
<UniqueIdentifier>{61651432-41a1-42f0-a853-c7795d813418}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Packs">
|
|
||||||
<UniqueIdentifier>{e194e42b-1c9b-4e35-9a4b-dabd68eab3e0}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="Tutorial\GameRules.xml">
|
|
||||||
<Filter>Tutorial</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\en-EN.lang">
|
|
||||||
<Filter>Tutorial\Loc</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\de-DE.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\es-ES.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\fr-FR.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\it-IT.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\ja-JP.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\ko-KR.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\pt-BR.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\pt-PT.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\Strings\Microsoft\zh-CHT.lang">
|
|
||||||
<Filter>Tutorial\Loc\Microsoft</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\Tutorial.pck">
|
|
||||||
<Filter>Packs</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\JungleTemp.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Lava.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\MinecraftSign.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Mushroom.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Ship.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Spider.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Stairs.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\StoneCircle.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Tower.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Pyramid.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\CasTes1.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\CasTes2.sch">
|
|
||||||
<Filter>Tutorial\schematics</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="Tutorial\schematics\Boat.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleBottom.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleFront.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleLeft.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleMain.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleRight.sch" />
|
|
||||||
<None Include="Tutorial\schematics\CastleTop.sch" />
|
|
||||||
<None Include="Tutorial\schematics\Tutorial.sch" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xsd Include="GameRulesDefinition.xsd">
|
|
||||||
<Filter>Shared</Filter>
|
|
||||||
</Xsd>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "1"
|
|
||||||
"EXCLUDED_FILE0" = "Durango\\Autogenerated.appxmanifest"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,170 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{881f28ee-ca74-4afc-94a6-2346cb88f86d}</UniqueIdentifier>
|
|
||||||
<Extensions>cpp;c;cxx;cc;s;asm</Extensions>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="stdafx.h" />
|
|
||||||
<ClInclude Include="StemTile_SPU.h" />
|
|
||||||
<ClInclude Include="StoneMonsterTile_SPU.h" />
|
|
||||||
<ClInclude Include="stubs_SPU.h" />
|
|
||||||
<ClInclude Include="TallGrass_SPU.h" />
|
|
||||||
<ClInclude Include="Tesselator_SPU.h" />
|
|
||||||
<ClInclude Include="TheEndPortal_SPU.h" />
|
|
||||||
<ClInclude Include="TheEndPortalFrameTile_SPU.h" />
|
|
||||||
<ClInclude Include="ThinFenceTile_SPU.h" />
|
|
||||||
<ClInclude Include="Tile_SPU.h" />
|
|
||||||
<ClInclude Include="TileRenderer_SPU.h" />
|
|
||||||
<ClInclude Include="TntTile_SPU.h" />
|
|
||||||
<ClInclude Include="TopSnowTile_SPU.h" />
|
|
||||||
<ClInclude Include="TorchTile_SPU.h" />
|
|
||||||
<ClInclude Include="TrapDoorTile_SPU.h" />
|
|
||||||
<ClInclude Include="TreeTile_SPU.h" />
|
|
||||||
<ClInclude Include="VineTile_SPU.h" />
|
|
||||||
<ClInclude Include="WaterLilyTile_SPU.h" />
|
|
||||||
<ClInclude Include="WebTile_SPU.h" />
|
|
||||||
<ClInclude Include="WoodTile_SPU.h" />
|
|
||||||
<ClInclude Include="WorkbenchTile_SPU.h" />
|
|
||||||
<ClInclude Include="BedTile_SPU.h" />
|
|
||||||
<ClInclude Include="BookshelfTile_SPU.h" />
|
|
||||||
<ClInclude Include="BrewingStandTile_SPU.h" />
|
|
||||||
<ClInclude Include="Bush_SPU.h" />
|
|
||||||
<ClInclude Include="ButtonTile_SPU.h" />
|
|
||||||
<ClInclude Include="CactusTile_SPU.h" />
|
|
||||||
<ClInclude Include="CakeTile_SPU.h" />
|
|
||||||
<ClInclude Include="CauldronTile_SPU.h" />
|
|
||||||
<ClInclude Include="ChestTile_SPU.h" />
|
|
||||||
<ClInclude Include="ChunkRebuildData.h" />
|
|
||||||
<ClInclude Include="CocoaTile_SPU.h" />
|
|
||||||
<ClInclude Include="CropTile_SPU.h" />
|
|
||||||
<ClInclude Include="DetectorRailTile_SPU.h" />
|
|
||||||
<ClInclude Include="DiodeTile_SPU.h" />
|
|
||||||
<ClInclude Include="Direction_SPU.h" />
|
|
||||||
<ClInclude Include="DirectionalTile_SPU.h" />
|
|
||||||
<ClInclude Include="DirtTile_SPU.h" />
|
|
||||||
<ClInclude Include="DispenserTile_SPU.h" />
|
|
||||||
<ClInclude Include="DoorTile_SPU.h" />
|
|
||||||
<ClInclude Include="EggTile_SPU.h" />
|
|
||||||
<ClInclude Include="EnchantmentTableTile_SPU.h" />
|
|
||||||
<ClInclude Include="EntityTile_SPU.h" />
|
|
||||||
<ClInclude Include="Facing_SPU.h" />
|
|
||||||
<ClInclude Include="FarmTile_SPU.h" />
|
|
||||||
<ClInclude Include="FenceGateTile_SPU.h" />
|
|
||||||
<ClInclude Include="FenceTile_SPU.h" />
|
|
||||||
<ClInclude Include="FireTile_SPU.h" />
|
|
||||||
<ClInclude Include="FurnaceTile_SPU.h" />
|
|
||||||
<ClInclude Include="GlassTile_SPU.h" />
|
|
||||||
<ClInclude Include="GrassTile_SPU.h" />
|
|
||||||
<ClInclude Include="HalfSlabTile_SPU.h" />
|
|
||||||
<ClInclude Include="HalfTransparentTile_SPU.h" />
|
|
||||||
<ClInclude Include="HugeMushroomTile_SPU.h" />
|
|
||||||
<ClInclude Include="IceTile_SPU.h" />
|
|
||||||
<ClInclude Include="Icon_SPU.h" />
|
|
||||||
<ClInclude Include="LadderTile_SPU.h" />
|
|
||||||
<ClInclude Include="LeafTile_SPU.h" />
|
|
||||||
<ClInclude Include="LeverTile_SPU.h" />
|
|
||||||
<ClInclude Include="LiquidTile_SPU.h" />
|
|
||||||
<ClInclude Include="Material_SPU.h" />
|
|
||||||
<ClInclude Include="MelonTile_SPU.h" />
|
|
||||||
<ClInclude Include="Mushroom_SPU.h" />
|
|
||||||
<ClInclude Include="MycelTile_SPU.h" />
|
|
||||||
<ClInclude Include="NetherStalkTile_SPU.h" />
|
|
||||||
<ClInclude Include="PistonBaseTile_SPU.h" />
|
|
||||||
<ClInclude Include="PistonExtensionTile_SPU.h" />
|
|
||||||
<ClInclude Include="PistonMovingPiece_SPU.h" />
|
|
||||||
<ClInclude Include="PortalTile_SPU.h" />
|
|
||||||
<ClInclude Include="PressurePlateTile_SPU.h" />
|
|
||||||
<ClInclude Include="PumpkinTile_SPU.h" />
|
|
||||||
<ClInclude Include="RailTile_SPU.h" />
|
|
||||||
<ClInclude Include="RecordPlayerTile_SPU.h" />
|
|
||||||
<ClInclude Include="RedlightTile_SPU.h" />
|
|
||||||
<ClInclude Include="RedStoneDustTile_SPU.h" />
|
|
||||||
<ClInclude Include="ReedTile_SPU.h" />
|
|
||||||
<ClInclude Include="SandStoneTile_SPU.h" />
|
|
||||||
<ClInclude Include="Sapling_SPU.h" />
|
|
||||||
<ClInclude Include="SignTile_SPU.h" />
|
|
||||||
<ClInclude Include="SmoothStoneBrickTile_SPU.h" />
|
|
||||||
<ClInclude Include="StairTile_SPU.h" />
|
|
||||||
<ClInclude Include="TileItem_SPU.h" />
|
|
||||||
<ClInclude Include="Item_SPU.h">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="ClothTile_SPU.h" />
|
|
||||||
<ClInclude Include="SkullTile_SPU.h" />
|
|
||||||
<ClInclude Include="WoodSlabTile_SPU.h" />
|
|
||||||
<ClInclude Include="StoneSlabTile_SPU.h" />
|
|
||||||
<ClInclude Include="MobSpawnerTile_SPU.h" />
|
|
||||||
<ClInclude Include="FlowerPotTile_SPU.h" />
|
|
||||||
<ClInclude Include="TripWireSourceTile_SPU.h" />
|
|
||||||
<ClInclude Include="TripWireTile_SPU.h" />
|
|
||||||
<ClInclude Include="WallTile_SPU.h" />
|
|
||||||
<ClInclude Include="QuartzBlockTile_SPU.h" />
|
|
||||||
<ClInclude Include="PotatoTile_SPU.h" />
|
|
||||||
<ClInclude Include="CarrotTile_SPU.h" />
|
|
||||||
<ClInclude Include="AnvilTile_SPU.h" />
|
|
||||||
<ClInclude Include="EnderChestTile_SPU.h" />
|
|
||||||
<ClInclude Include="WoolCarpetTile_SPU.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="ChunkRebuildData.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="DiodeTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Direction_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="DoorTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Facing_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="FenceTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="GrassTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="HalfSlabTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Icon_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="LeafTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="LiquidTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="PressurePlateTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="StairTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="TallGrass_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="task.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Tesselator_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="ThinFenceTile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Tile_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="TileRenderer_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{881f28ee-ca74-4afc-94a6-2346cb88f86d}</UniqueIdentifier>
|
|
||||||
<Extensions>cpp;c;cxx;cc;s;asm</Extensions>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="CompressedTileStorage_SPU.h" />
|
|
||||||
<ClInclude Include="SparseDataStorage_SPU.h" />
|
|
||||||
<ClInclude Include="SparseLightStorage_SPU.h" />
|
|
||||||
<ClInclude Include="stdafx.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="CompressedTile_main.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="CompressedTileStorage_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="SparseDataStorage_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="SparseLightStorage_SPU.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\CompressedTileStorage_compress\CompressedTileStorage_compress.spu.vcxproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{881f28ee-ca74-4afc-94a6-2346cb88f86d}</UniqueIdentifier>
|
|
||||||
<Extensions>cpp;c;cxx;cc;s;asm</Extensions>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="stdafx.h" />
|
|
||||||
<ClInclude Include="CompressedTileStorage_compress.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="CompressedTileStorage_compress.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\LevelRenderer_FindNearestChunk\LevelRenderer_FindNearestChunk.spu.vcxproj" />
|
|
||||||
<None Include="..\Texture_blit\Texture_blit.spu.vcxproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{881f28ee-ca74-4afc-94a6-2346cb88f86d}</UniqueIdentifier>
|
|
||||||
<Extensions>cpp;c;cxx;cc;s;asm</Extensions>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="GameRenderer_updateLightTexture.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="GameRenderer_updateLightTexture.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{881f28ee-ca74-4afc-94a6-2346cb88f86d}</UniqueIdentifier>
|
|
||||||
<Extensions>cpp;c;cxx;cc;s;asm</Extensions>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="LevelRenderChunks_main.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="LevelRenderChunks.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT"
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT"
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
C:\Users\manea\Documents\MinecraftConsoles\Minecraft.World\ARM64EC_Debug\Minecraft.World.lib
|
|
||||||
2154
Minecraft.World/CMakeLists.txt
Normal file
2154
Minecraft.World/CMakeLists.txt
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
</Project>
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
""
|
|
||||||
{
|
|
||||||
"FILE_VERSION" = "9237"
|
|
||||||
"ENLISTMENT_CHOICE" = "NEVER"
|
|
||||||
"PROJECT_FILE_RELATIVE_PATH" = ""
|
|
||||||
"NUMBER_OF_EXCLUDED_FILES" = "0"
|
|
||||||
"ORIGINAL_PROJECT_FILE_PATH" = ""
|
|
||||||
"NUMBER_OF_NESTED_PROJECTS" = "0"
|
|
||||||
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
|
|
||||||
}
|
|
||||||
|
|
@ -1,497 +0,0 @@
|
||||||
set(MINECRAFT_CLIENT_SOURCES
|
|
||||||
"AbstractTexturePack.cpp"
|
|
||||||
"AchievementPopup.cpp"
|
|
||||||
"AchievementScreen.cpp"
|
|
||||||
"AllowAllCuller.cpp"
|
|
||||||
"ArchiveFile.cpp"
|
|
||||||
"ArrowRenderer.cpp"
|
|
||||||
"BatModel.cpp"
|
|
||||||
"BatRenderer.cpp"
|
|
||||||
"BeaconRenderer.cpp"
|
|
||||||
"BlazeModel.cpp"
|
|
||||||
"BlazeRenderer.cpp"
|
|
||||||
"BoatModel.cpp"
|
|
||||||
"BoatRenderer.cpp"
|
|
||||||
"BookModel.cpp"
|
|
||||||
"BossMobGuiInfo.cpp"
|
|
||||||
"BreakingItemParticle.cpp"
|
|
||||||
"BubbleParticle.cpp"
|
|
||||||
"BufferedImage.cpp"
|
|
||||||
"Button.cpp"
|
|
||||||
"Camera.cpp"
|
|
||||||
"CaveSpiderRenderer.cpp"
|
|
||||||
"ChatScreen.cpp"
|
|
||||||
"ChestModel.cpp"
|
|
||||||
"ChestRenderer.cpp"
|
|
||||||
"ChickenModel.cpp"
|
|
||||||
"ChickenRenderer.cpp"
|
|
||||||
"Chunk.cpp"
|
|
||||||
"ClientConnection.cpp"
|
|
||||||
"ClientConstants.cpp"
|
|
||||||
"ClockTexture.cpp"
|
|
||||||
"Common/Audio/Consoles_SoundEngine.cpp"
|
|
||||||
"Common/Audio/SoundEngine.cpp"
|
|
||||||
"Common/Audio/SoundNames.cpp"
|
|
||||||
"Common/Colours/ColourTable.cpp"
|
|
||||||
"Common/ConsoleGameMode.cpp"
|
|
||||||
"Common/Console_Utils.cpp"
|
|
||||||
"Common/Consoles_App.cpp"
|
|
||||||
"Common/DLC/DLCAudioFile.cpp"
|
|
||||||
"Common/DLC/DLCCapeFile.cpp"
|
|
||||||
"Common/DLC/DLCColourTableFile.cpp"
|
|
||||||
"Common/DLC/DLCFile.cpp"
|
|
||||||
"Common/DLC/DLCGameRulesFile.cpp"
|
|
||||||
"Common/DLC/DLCGameRulesHeader.cpp"
|
|
||||||
"Common/DLC/DLCLocalisationFile.cpp"
|
|
||||||
"Common/DLC/DLCManager.cpp"
|
|
||||||
"Common/DLC/DLCPack.cpp"
|
|
||||||
"Common/DLC/DLCSkinFile.cpp"
|
|
||||||
"Common/DLC/DLCTextureFile.cpp"
|
|
||||||
"Common/DLC/DLCUIDataFile.cpp"
|
|
||||||
"Common/Filesystem/Filesystem.cpp"
|
|
||||||
"Common/GameRules/AddEnchantmentRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/AddItemRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/ApplySchematicRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/BiomeOverride.cpp"
|
|
||||||
"Common/GameRules/CollectItemRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/CompleteAllRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/CompoundGameRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/ConsoleGenerateStructure.cpp"
|
|
||||||
"Common/GameRules/ConsoleSchematicFile.cpp"
|
|
||||||
"Common/GameRules/GameRule.cpp"
|
|
||||||
"Common/GameRules/GameRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/GameRuleManager.cpp"
|
|
||||||
"Common/GameRules/LevelGenerationOptions.cpp"
|
|
||||||
"Common/GameRules/LevelGenerators.cpp"
|
|
||||||
"Common/GameRules/LevelRules.cpp"
|
|
||||||
"Common/GameRules/LevelRuleset.cpp"
|
|
||||||
"Common/GameRules/NamedAreaRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/StartFeature.cpp"
|
|
||||||
"Common/GameRules/UpdatePlayerRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/UseTileRuleDefinition.cpp"
|
|
||||||
"Common/GameRules/XboxStructureActionGenerateBox.cpp"
|
|
||||||
"Common/GameRules/XboxStructureActionPlaceBlock.cpp"
|
|
||||||
"Common/GameRules/XboxStructureActionPlaceContainer.cpp"
|
|
||||||
"Common/GameRules/XboxStructureActionPlaceSpawner.cpp"
|
|
||||||
"Common/Leaderboards/LeaderboardInterface.cpp"
|
|
||||||
"Common/Leaderboards/LeaderboardManager.cpp"
|
|
||||||
"Common/Network/GameNetworkManager.cpp"
|
|
||||||
"Common/Network/PlatformNetworkManagerStub.cpp"
|
|
||||||
"Common/Telemetry/TelemetryManager.cpp"
|
|
||||||
"Common/Trial/TrialMode.cpp"
|
|
||||||
"Common/Tutorial/AreaConstraint.cpp"
|
|
||||||
"Common/Tutorial/AreaHint.cpp"
|
|
||||||
"Common/Tutorial/AreaTask.cpp"
|
|
||||||
"Common/Tutorial/ChangeStateConstraint.cpp"
|
|
||||||
"Common/Tutorial/ChoiceTask.cpp"
|
|
||||||
"Common/Tutorial/CompleteUsingItemTask.cpp"
|
|
||||||
"Common/Tutorial/ControllerTask.cpp"
|
|
||||||
"Common/Tutorial/CraftTask.cpp"
|
|
||||||
"Common/Tutorial/DiggerItemHint.cpp"
|
|
||||||
"Common/Tutorial/EffectChangedTask.cpp"
|
|
||||||
"Common/Tutorial/FullTutorial.cpp"
|
|
||||||
"Common/Tutorial/FullTutorialActiveTask.cpp"
|
|
||||||
"Common/Tutorial/FullTutorialMode.cpp"
|
|
||||||
"Common/Tutorial/HorseChoiceTask.cpp"
|
|
||||||
"Common/Tutorial/InfoTask.cpp"
|
|
||||||
"Common/Tutorial/InputConstraint.cpp"
|
|
||||||
"Common/Tutorial/LookAtEntityHint.cpp"
|
|
||||||
"Common/Tutorial/LookAtTileHint.cpp"
|
|
||||||
"Common/Tutorial/PickupTask.cpp"
|
|
||||||
"Common/Tutorial/ProcedureCompoundTask.cpp"
|
|
||||||
"Common/Tutorial/ProgressFlagTask.cpp"
|
|
||||||
"Common/Tutorial/RideEntityTask.cpp"
|
|
||||||
"Common/Tutorial/StatTask.cpp"
|
|
||||||
"Common/Tutorial/TakeItemHint.cpp"
|
|
||||||
"Common/Tutorial/Tutorial.cpp"
|
|
||||||
"Common/Tutorial/TutorialHint.cpp"
|
|
||||||
"Common/Tutorial/TutorialMessage.cpp"
|
|
||||||
"Common/Tutorial/TutorialMode.cpp"
|
|
||||||
"Common/Tutorial/TutorialTask.cpp"
|
|
||||||
"Common/Tutorial/UseItemTask.cpp"
|
|
||||||
"Common/Tutorial/UseTileTask.cpp"
|
|
||||||
"Common/Tutorial/XuiCraftingTask.cpp"
|
|
||||||
"Common/UI/IUIScene_AbstractContainerMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_AnvilMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_BeaconMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_BrewingMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_CommandBlockMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_ContainerMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_CraftingMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_CreativeMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_DispenserMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_EnchantingMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_FireworksMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_FurnaceMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_HUD.cpp"
|
|
||||||
"Common/UI/IUIScene_HopperMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_HorseInventoryMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_InventoryMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_PauseMenu.cpp"
|
|
||||||
"Common/UI/IUIScene_StartGame.cpp"
|
|
||||||
"Common/UI/IUIScene_TradingMenu.cpp"
|
|
||||||
"Common/UI/UIBitmapFont.cpp"
|
|
||||||
"Common/UI/UIComponent_Chat.cpp"
|
|
||||||
"Common/UI/UIComponent_DebugUIConsole.cpp"
|
|
||||||
"Common/UI/UIComponent_DebugUIMarketingGuide.cpp"
|
|
||||||
"Common/UI/UIComponent_Logo.cpp"
|
|
||||||
"Common/UI/UIComponent_MenuBackground.cpp"
|
|
||||||
"Common/UI/UIComponent_Panorama.cpp"
|
|
||||||
"Common/UI/UIComponent_PressStartToPlay.cpp"
|
|
||||||
"Common/UI/UIComponent_Tooltips.cpp"
|
|
||||||
"Common/UI/UIComponent_TutorialPopup.cpp"
|
|
||||||
"Common/UI/UIControl.cpp"
|
|
||||||
"Common/UI/UIControl_Base.cpp"
|
|
||||||
"Common/UI/UIControl_BeaconEffectButton.cpp"
|
|
||||||
"Common/UI/UIControl_BitmapIcon.cpp"
|
|
||||||
"Common/UI/UIControl_Button.cpp"
|
|
||||||
"Common/UI/UIControl_ButtonList.cpp"
|
|
||||||
"Common/UI/UIControl_CheckBox.cpp"
|
|
||||||
"Common/UI/UIControl_Cursor.cpp"
|
|
||||||
"Common/UI/UIControl_DLCList.cpp"
|
|
||||||
"Common/UI/UIControl_DynamicLabel.cpp"
|
|
||||||
"Common/UI/UIControl_EnchantmentBook.cpp"
|
|
||||||
"Common/UI/UIControl_EnchantmentButton.cpp"
|
|
||||||
"Common/UI/UIControl_HTMLLabel.cpp"
|
|
||||||
"Common/UI/UIControl_Label.cpp"
|
|
||||||
"Common/UI/UIControl_LeaderboardList.cpp"
|
|
||||||
"Common/UI/UIControl_MinecraftHorse.cpp"
|
|
||||||
"Common/UI/UIControl_MinecraftPlayer.cpp"
|
|
||||||
"Common/UI/UIControl_PlayerList.cpp"
|
|
||||||
"Common/UI/UIControl_PlayerSkinPreview.cpp"
|
|
||||||
"Common/UI/UIControl_Progress.cpp"
|
|
||||||
"Common/UI/UIControl_SaveList.cpp"
|
|
||||||
"Common/UI/UIControl_Slider.cpp"
|
|
||||||
"Common/UI/UIControl_SlotList.cpp"
|
|
||||||
"Common/UI/UIControl_SpaceIndicatorBar.cpp"
|
|
||||||
"Common/UI/UIControl_TextInput.cpp"
|
|
||||||
"Common/UI/UIControl_TexturePackList.cpp"
|
|
||||||
"Common/UI/UIController.cpp"
|
|
||||||
"Common/UI/UIFontData.cpp"
|
|
||||||
"Common/UI/UIGroup.cpp"
|
|
||||||
"Common/UI/UILayer.cpp"
|
|
||||||
"Common/UI/UIScene.cpp"
|
|
||||||
"Common/UI/UIScene_AbstractContainerMenu.cpp"
|
|
||||||
"Common/UI/UIScene_AnvilMenu.cpp"
|
|
||||||
"Common/UI/UIScene_BeaconMenu.cpp"
|
|
||||||
"Common/UI/UIScene_BrewingStandMenu.cpp"
|
|
||||||
"Common/UI/UIScene_ConnectingProgress.cpp"
|
|
||||||
"Common/UI/UIScene_ContainerMenu.cpp"
|
|
||||||
"Common/UI/UIScene_ControlsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_CraftingMenu.cpp"
|
|
||||||
"Common/UI/UIScene_CreateWorldMenu.cpp"
|
|
||||||
"Common/UI/UIScene_CreativeMenu.cpp"
|
|
||||||
"Common/UI/UIScene_Credits.cpp"
|
|
||||||
"Common/UI/UIScene_DLCMainMenu.cpp"
|
|
||||||
"Common/UI/UIScene_DLCOffersMenu.cpp"
|
|
||||||
"Common/UI/UIScene_DeathMenu.cpp"
|
|
||||||
"Common/UI/UIScene_DebugCreateSchematic.cpp"
|
|
||||||
"Common/UI/UIScene_DebugOptions.cpp"
|
|
||||||
"Common/UI/UIScene_DebugOverlay.cpp"
|
|
||||||
"Common/UI/UIScene_DebugSetCamera.cpp"
|
|
||||||
"Common/UI/UIScene_DispenserMenu.cpp"
|
|
||||||
"Common/UI/UIScene_EULA.cpp"
|
|
||||||
"Common/UI/UIScene_EnchantingMenu.cpp"
|
|
||||||
"Common/UI/UIScene_EndPoem.cpp"
|
|
||||||
"Common/UI/UIScene_FireworksMenu.cpp"
|
|
||||||
"Common/UI/UIScene_FullscreenProgress.cpp"
|
|
||||||
"Common/UI/UIScene_FurnaceMenu.cpp"
|
|
||||||
"Common/UI/UIScene_HUD.cpp"
|
|
||||||
"Common/UI/UIScene_HelpAndOptionsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_HopperMenu.cpp"
|
|
||||||
"Common/UI/UIScene_HorseInventoryMenu.cpp"
|
|
||||||
"Common/UI/UIScene_HowToPlay.cpp"
|
|
||||||
"Common/UI/UIScene_HowToPlayMenu.cpp"
|
|
||||||
"Common/UI/UIScene_InGameHostOptionsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_InGameInfoMenu.cpp"
|
|
||||||
"Common/UI/UIScene_InGamePlayerOptionsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_Intro.cpp"
|
|
||||||
"Common/UI/UIScene_InventoryMenu.cpp"
|
|
||||||
"Common/UI/UIScene_JoinMenu.cpp"
|
|
||||||
"Common/UI/UIScene_Keyboard.cpp"
|
|
||||||
"Common/UI/UIScene_LanguageSelector.cpp"
|
|
||||||
"Common/UI/UIScene_LaunchMoreOptionsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_LeaderboardsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_LoadMenu.cpp"
|
|
||||||
"Common/UI/UIScene_LoadOrJoinMenu.cpp"
|
|
||||||
"Common/UI/UIScene_MainMenu.cpp"
|
|
||||||
"Common/UI/UIScene_MessageBox.cpp"
|
|
||||||
"Common/UI/UIScene_NewUpdateMessage.cpp"
|
|
||||||
"Common/UI/UIScene_PauseMenu.cpp"
|
|
||||||
"Common/UI/UIScene_QuadrantSignin.cpp"
|
|
||||||
"Common/UI/UIScene_ReinstallMenu.cpp"
|
|
||||||
"Common/UI/UIScene_SaveMessage.cpp"
|
|
||||||
"Common/UI/UIScene_SettingsAudioMenu.cpp"
|
|
||||||
"Common/UI/UIScene_SettingsControlMenu.cpp"
|
|
||||||
"Common/UI/UIScene_SettingsGraphicsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_SettingsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_SettingsOptionsMenu.cpp"
|
|
||||||
"Common/UI/UIScene_SettingsUIMenu.cpp"
|
|
||||||
"Common/UI/UIScene_SignEntryMenu.cpp"
|
|
||||||
"Common/UI/UIScene_SkinSelectMenu.cpp"
|
|
||||||
"Common/UI/UIScene_TeleportMenu.cpp"
|
|
||||||
"Common/UI/UIScene_Timer.cpp"
|
|
||||||
"Common/UI/UIScene_TradingMenu.cpp"
|
|
||||||
"Common/UI/UIScene_TrialExitUpsell.cpp"
|
|
||||||
"Common/UI/UIString.cpp"
|
|
||||||
"Common/UI/UITTFFont.cpp"
|
|
||||||
"Common/zlib/adler32.c"
|
|
||||||
"Common/zlib/compress.c"
|
|
||||||
"Common/zlib/crc32.c"
|
|
||||||
"Common/zlib/deflate.c"
|
|
||||||
"Common/zlib/gzclose.c"
|
|
||||||
"Common/zlib/gzlib.c"
|
|
||||||
"Common/zlib/gzread.c"
|
|
||||||
"Common/zlib/gzwrite.c"
|
|
||||||
"Common/zlib/infback.c"
|
|
||||||
"Common/zlib/inffast.c"
|
|
||||||
"Common/zlib/inflate.c"
|
|
||||||
"Common/zlib/inftrees.c"
|
|
||||||
"Common/zlib/trees.c"
|
|
||||||
"Common/zlib/uncompr.c"
|
|
||||||
"Common/zlib/zutil.c"
|
|
||||||
"CompassTexture.cpp"
|
|
||||||
"ConfirmScreen.cpp"
|
|
||||||
"ConsoleInput.cpp"
|
|
||||||
"ControlsScreen.cpp"
|
|
||||||
"CowModel.cpp"
|
|
||||||
"CowRenderer.cpp"
|
|
||||||
"CreateWorldScreen.cpp"
|
|
||||||
"CreeperModel.cpp"
|
|
||||||
"CreeperRenderer.cpp"
|
|
||||||
"CritParticle.cpp"
|
|
||||||
"CritParticle2.cpp"
|
|
||||||
"Cube.cpp"
|
|
||||||
"DLCTexturePack.cpp"
|
|
||||||
"DeathScreen.cpp"
|
|
||||||
"DefaultRenderer.cpp"
|
|
||||||
"DefaultTexturePack.cpp"
|
|
||||||
"DemoUser.cpp"
|
|
||||||
"DerivedServerLevel.cpp"
|
|
||||||
"DirtyChunkSorter.cpp"
|
|
||||||
"DispenserBootstrap.cpp"
|
|
||||||
"DistanceChunkSorter.cpp"
|
|
||||||
"DragonBreathParticle.cpp"
|
|
||||||
"DragonModel.cpp"
|
|
||||||
"DripParticle.cpp"
|
|
||||||
"EchantmentTableParticle.cpp"
|
|
||||||
"EditBox.cpp"
|
|
||||||
"EnchantTableRenderer.cpp"
|
|
||||||
"EnderChestRenderer.cpp"
|
|
||||||
"EnderCrystalModel.cpp"
|
|
||||||
"EnderCrystalRenderer.cpp"
|
|
||||||
"EnderDragonRenderer.cpp"
|
|
||||||
"EnderParticle.cpp"
|
|
||||||
"EndermanModel.cpp"
|
|
||||||
"EndermanRenderer.cpp"
|
|
||||||
"EntityRenderDispatcher.cpp"
|
|
||||||
"EntityRenderer.cpp"
|
|
||||||
"EntityTileRenderer.cpp"
|
|
||||||
"EntityTracker.cpp"
|
|
||||||
"ErrorScreen.cpp"
|
|
||||||
"ExperienceOrbRenderer.cpp"
|
|
||||||
"ExplodeParticle.cpp"
|
|
||||||
"Extrax64Stubs.cpp"
|
|
||||||
"FallingTileRenderer.cpp"
|
|
||||||
"FileTexturePack.cpp"
|
|
||||||
"FireballRenderer.cpp"
|
|
||||||
"FireworksParticles.cpp"
|
|
||||||
"FishingHookRenderer.cpp"
|
|
||||||
"FlameParticle.cpp"
|
|
||||||
"FolderTexturePack.cpp"
|
|
||||||
"Font.cpp"
|
|
||||||
"FootstepParticle.cpp"
|
|
||||||
"Frustum.cpp"
|
|
||||||
"FrustumCuller.cpp"
|
|
||||||
"FrustumData.cpp"
|
|
||||||
"GameRenderer.cpp"
|
|
||||||
"GhastModel.cpp"
|
|
||||||
"GhastRenderer.cpp"
|
|
||||||
"GiantMobRenderer.cpp"
|
|
||||||
"Gui.cpp"
|
|
||||||
"GuiComponent.cpp"
|
|
||||||
"GuiMessage.cpp"
|
|
||||||
"GuiParticle.cpp"
|
|
||||||
"GuiParticles.cpp"
|
|
||||||
"HeartParticle.cpp"
|
|
||||||
"HorseRenderer.cpp"
|
|
||||||
"HttpTexture.cpp"
|
|
||||||
"HugeExplosionParticle.cpp"
|
|
||||||
"HugeExplosionSeedParticle.cpp"
|
|
||||||
"HumanoidMobRenderer.cpp"
|
|
||||||
"HumanoidModel.cpp"
|
|
||||||
"InBedChatScreen.cpp"
|
|
||||||
"Input.cpp"
|
|
||||||
"iob_shim.asm"
|
|
||||||
"ItemFrameRenderer.cpp"
|
|
||||||
"ItemInHandRenderer.cpp"
|
|
||||||
"ItemRenderer.cpp"
|
|
||||||
"ItemSpriteRenderer.cpp"
|
|
||||||
"JoinMultiplayerScreen.cpp"
|
|
||||||
"KeyMapping.cpp"
|
|
||||||
"LargeChestModel.cpp"
|
|
||||||
"LavaParticle.cpp"
|
|
||||||
"LavaSlimeModel.cpp"
|
|
||||||
"LavaSlimeRenderer.cpp"
|
|
||||||
"LeashKnotModel.cpp"
|
|
||||||
"LeashKnotRenderer.cpp"
|
|
||||||
"LevelRenderer.cpp"
|
|
||||||
"Lighting.cpp"
|
|
||||||
"LightningBoltRenderer.cpp"
|
|
||||||
"LivingEntityRenderer.cpp"
|
|
||||||
"LocalPlayer.cpp"
|
|
||||||
"MemTexture.cpp"
|
|
||||||
"MemoryTracker.cpp"
|
|
||||||
"MinecartModel.cpp"
|
|
||||||
"MinecartRenderer.cpp"
|
|
||||||
"MinecartSpawnerRenderer.cpp"
|
|
||||||
"Minecraft.cpp"
|
|
||||||
"MinecraftServer.cpp"
|
|
||||||
"Minimap.cpp"
|
|
||||||
"MobRenderer.cpp"
|
|
||||||
"MobSkinMemTextureProcessor.cpp"
|
|
||||||
"MobSkinTextureProcessor.cpp"
|
|
||||||
"MobSpawnerRenderer.cpp"
|
|
||||||
"Model.cpp"
|
|
||||||
"ModelHorse.cpp"
|
|
||||||
"ModelPart.cpp"
|
|
||||||
"MultiPlayerChunkCache.cpp"
|
|
||||||
"MultiPlayerGameMode.cpp"
|
|
||||||
"MultiPlayerLevel.cpp"
|
|
||||||
"MultiPlayerLocalPlayer.cpp"
|
|
||||||
"MushroomCowRenderer.cpp"
|
|
||||||
"NameEntryScreen.cpp"
|
|
||||||
"NetherPortalParticle.cpp"
|
|
||||||
"NoteParticle.cpp"
|
|
||||||
"OcelotModel.cpp"
|
|
||||||
"OcelotRenderer.cpp"
|
|
||||||
"OffsettedRenderList.cpp"
|
|
||||||
"Options.cpp"
|
|
||||||
"OptionsScreen.cpp"
|
|
||||||
"PS3/PS3Extras/ShutdownManager.cpp"
|
|
||||||
"PaintingRenderer.cpp"
|
|
||||||
"Particle.cpp"
|
|
||||||
"ParticleEngine.cpp"
|
|
||||||
"PauseScreen.cpp"
|
|
||||||
"PendingConnection.cpp"
|
|
||||||
"PigModel.cpp"
|
|
||||||
"PigRenderer.cpp"
|
|
||||||
"PistonPieceRenderer.cpp"
|
|
||||||
"PlayerChunkMap.cpp"
|
|
||||||
"PlayerCloudParticle.cpp"
|
|
||||||
"PlayerConnection.cpp"
|
|
||||||
"PlayerList.cpp"
|
|
||||||
"PlayerRenderer.cpp"
|
|
||||||
"Polygon.cpp"
|
|
||||||
"PreStitchedTextureMap.cpp"
|
|
||||||
"ProgressRenderer.cpp"
|
|
||||||
"QuadrupedModel.cpp"
|
|
||||||
"Rect2i.cpp"
|
|
||||||
"RedDustParticle.cpp"
|
|
||||||
"RemotePlayer.cpp"
|
|
||||||
"RenameWorldScreen.cpp"
|
|
||||||
"Screen.cpp"
|
|
||||||
"ScreenSizeCalculator.cpp"
|
|
||||||
"ScrolledSelectionList.cpp"
|
|
||||||
"SelectWorldScreen.cpp"
|
|
||||||
"ServerChunkCache.cpp"
|
|
||||||
"ServerCommandDispatcher.cpp"
|
|
||||||
"ServerConnection.cpp"
|
|
||||||
"ServerLevel.cpp"
|
|
||||||
"ServerLevelListener.cpp"
|
|
||||||
"ServerPlayer.cpp"
|
|
||||||
"ServerPlayerGameMode.cpp"
|
|
||||||
"ServerScoreboard.cpp"
|
|
||||||
"Settings.cpp"
|
|
||||||
"SheepFurModel.cpp"
|
|
||||||
"SheepModel.cpp"
|
|
||||||
"SheepRenderer.cpp"
|
|
||||||
"SignModel.cpp"
|
|
||||||
"SignRenderer.cpp"
|
|
||||||
"SilverfishModel.cpp"
|
|
||||||
"SilverfishRenderer.cpp"
|
|
||||||
"SimpleIcon.cpp"
|
|
||||||
"SkeletonHeadModel.cpp"
|
|
||||||
"SkeletonModel.cpp"
|
|
||||||
"SkeletonRenderer.cpp"
|
|
||||||
"SkiModel.cpp"
|
|
||||||
"SkullTileRenderer.cpp"
|
|
||||||
"SlideButton.cpp"
|
|
||||||
"SlimeModel.cpp"
|
|
||||||
"SlimeRenderer.cpp"
|
|
||||||
"SmallButton.cpp"
|
|
||||||
"SmokeParticle.cpp"
|
|
||||||
"SnowManModel.cpp"
|
|
||||||
"SnowManRenderer.cpp"
|
|
||||||
"SnowShovelParticle.cpp"
|
|
||||||
"SpellParticle.cpp"
|
|
||||||
"SpiderModel.cpp"
|
|
||||||
"SpiderRenderer.cpp"
|
|
||||||
"SplashParticle.cpp"
|
|
||||||
"SquidModel.cpp"
|
|
||||||
"SquidRenderer.cpp"
|
|
||||||
"StatsCounter.cpp"
|
|
||||||
"StatsScreen.cpp"
|
|
||||||
"StatsSyncher.cpp"
|
|
||||||
"StitchSlot.cpp"
|
|
||||||
"StitchedTexture.cpp"
|
|
||||||
"Stitcher.cpp"
|
|
||||||
"StringTable.cpp"
|
|
||||||
"SuspendedParticle.cpp"
|
|
||||||
"SuspendedTownParticle.cpp"
|
|
||||||
"TakeAnimationParticle.cpp"
|
|
||||||
"TeleportCommand.cpp"
|
|
||||||
"TerrainParticle.cpp"
|
|
||||||
"Tesselator.cpp"
|
|
||||||
"TexOffs.cpp"
|
|
||||||
"Texture.cpp"
|
|
||||||
"TextureAtlas.cpp"
|
|
||||||
"TextureHolder.cpp"
|
|
||||||
"TextureManager.cpp"
|
|
||||||
"TextureMap.cpp"
|
|
||||||
"TexturePack.cpp"
|
|
||||||
"TexturePackRepository.cpp"
|
|
||||||
"Textures.cpp"
|
|
||||||
"TheEndPortalRenderer.cpp"
|
|
||||||
"TileEntityRenderDispatcher.cpp"
|
|
||||||
"TileEntityRenderer.cpp"
|
|
||||||
"TileRenderer.cpp"
|
|
||||||
"Timer.cpp"
|
|
||||||
"TitleScreen.cpp"
|
|
||||||
"TntMinecartRenderer.cpp"
|
|
||||||
"TntRenderer.cpp"
|
|
||||||
"TrackedEntity.cpp"
|
|
||||||
"User.cpp"
|
|
||||||
"Vertex.cpp"
|
|
||||||
"VideoSettingsScreen.cpp"
|
|
||||||
"ViewportCuller.cpp"
|
|
||||||
"VillagerGolemModel.cpp"
|
|
||||||
"VillagerGolemRenderer.cpp"
|
|
||||||
"VillagerModel.cpp"
|
|
||||||
"VillagerRenderer.cpp"
|
|
||||||
"VillagerZombieModel.cpp"
|
|
||||||
"WaterDropParticle.cpp"
|
|
||||||
"Windows64/Iggy/gdraw/gdraw_d3d11.cpp"
|
|
||||||
"Windows64/KeyboardMouseInput.cpp"
|
|
||||||
"Windows64/PostProcesser.cpp"
|
|
||||||
"Windows64/Leaderboards/WindowsLeaderboardManager.cpp"
|
|
||||||
"Windows64/Windows64_App.cpp"
|
|
||||||
"Windows64/Windows64_Minecraft.cpp"
|
|
||||||
"Windows64/Windows64_UIController.cpp"
|
|
||||||
"Windows64/Network/WinsockNetLayer.cpp"
|
|
||||||
"WitchModel.cpp"
|
|
||||||
"WitchRenderer.cpp"
|
|
||||||
"WitherBossModel.cpp"
|
|
||||||
"WitherBossRenderer.cpp"
|
|
||||||
"WitherSkullRenderer.cpp"
|
|
||||||
"WolfModel.cpp"
|
|
||||||
"WolfRenderer.cpp"
|
|
||||||
"WstringLookup.cpp"
|
|
||||||
"Xbox/Network/NetworkPlayerXbox.cpp"
|
|
||||||
"ZombieModel.cpp"
|
|
||||||
"ZombieRenderer.cpp"
|
|
||||||
"compat_shims.cpp"
|
|
||||||
"glWrapper.cpp"
|
|
||||||
"stdafx.cpp"
|
|
||||||
"stubs.cpp"
|
|
||||||
)
|
|
||||||
|
|
@ -1,801 +0,0 @@
|
||||||
set(MINECRAFT_WORLD_SOURCES
|
|
||||||
"AABB.cpp"
|
|
||||||
"Abilities.cpp"
|
|
||||||
"AbsoptionMobEffect.cpp"
|
|
||||||
"AbstractContainerMenu.cpp"
|
|
||||||
"AbstractProjectileDispenseBehavior.cpp"
|
|
||||||
"Achievement.cpp"
|
|
||||||
"Achievements.cpp"
|
|
||||||
"AddEntityPacket.cpp"
|
|
||||||
"AddExperienceOrbPacket.cpp"
|
|
||||||
"AddGlobalEntityPacket.cpp"
|
|
||||||
"AddIslandLayer.cpp"
|
|
||||||
"AddMobPacket.cpp"
|
|
||||||
"AddMushroomIslandLayer.cpp"
|
|
||||||
"AddPaintingPacket.cpp"
|
|
||||||
"AddPlayerPacket.cpp"
|
|
||||||
"AddSnowLayer.cpp"
|
|
||||||
"AgableMob.cpp"
|
|
||||||
"AirTile.cpp"
|
|
||||||
"AmbientCreature.cpp"
|
|
||||||
"Animal.cpp"
|
|
||||||
"AnimalChest.cpp"
|
|
||||||
"AnimatePacket.cpp"
|
|
||||||
"AnvilMenu.cpp"
|
|
||||||
"AnvilTile.cpp"
|
|
||||||
"AnvilTileItem.cpp"
|
|
||||||
"ArmorDyeRecipe.cpp"
|
|
||||||
"ArmorItem.cpp"
|
|
||||||
"ArmorRecipes.cpp"
|
|
||||||
"ArmorSlot.cpp"
|
|
||||||
"Arrow.cpp"
|
|
||||||
"ArrowDamageEnchantment.cpp"
|
|
||||||
"ArrowFireEnchantment.cpp"
|
|
||||||
"ArrowInfiniteEnchantment.cpp"
|
|
||||||
"ArrowKnockbackEnchantment.cpp"
|
|
||||||
"AttackDamageMobEffect.cpp"
|
|
||||||
"Attribute.cpp"
|
|
||||||
"AttributeModifier.cpp"
|
|
||||||
"AuxDataTileItem.cpp"
|
|
||||||
"AvoidPlayerGoal.cpp"
|
|
||||||
"AwardStatPacket.cpp"
|
|
||||||
"BaseAttribute.cpp"
|
|
||||||
"BaseAttributeMap.cpp"
|
|
||||||
"BaseEntityTile.cpp"
|
|
||||||
"BaseMobSpawner.cpp"
|
|
||||||
"BasePressurePlateTile.cpp"
|
|
||||||
"BaseRailTile.cpp"
|
|
||||||
"BasicTree.cpp"
|
|
||||||
"BasicTypeContainers.cpp"
|
|
||||||
"Bat.cpp"
|
|
||||||
"BeachBiome.cpp"
|
|
||||||
"BeaconMenu.cpp"
|
|
||||||
"BeaconTile.cpp"
|
|
||||||
"BeaconTileEntity.cpp"
|
|
||||||
"BedItem.cpp"
|
|
||||||
"BedTile.cpp"
|
|
||||||
"BegGoal.cpp"
|
|
||||||
"BehaviorRegistry.cpp"
|
|
||||||
"BinaryHeap.cpp"
|
|
||||||
"Biome.cpp"
|
|
||||||
"BiomeCache.cpp"
|
|
||||||
"BiomeDecorator.cpp"
|
|
||||||
"BiomeInitLayer.cpp"
|
|
||||||
"BiomeOverrideLayer.cpp"
|
|
||||||
"BiomeSource.cpp"
|
|
||||||
"BirchFeature.cpp"
|
|
||||||
"Blaze.cpp"
|
|
||||||
"BlockDestructionProgress.cpp"
|
|
||||||
"BlockGenMethods.cpp"
|
|
||||||
"BlockRegionUpdatePacket.cpp"
|
|
||||||
"BlockReplacements.cpp"
|
|
||||||
"BlockSourceImpl.cpp"
|
|
||||||
"Boat.cpp"
|
|
||||||
"BoatItem.cpp"
|
|
||||||
"BodyControl.cpp"
|
|
||||||
"BonusChestFeature.cpp"
|
|
||||||
"BookItem.cpp"
|
|
||||||
"BookshelfTile.cpp"
|
|
||||||
"BottleItem.cpp"
|
|
||||||
"BoundingBox.cpp"
|
|
||||||
"BowItem.cpp"
|
|
||||||
"BowlFoodItem.cpp"
|
|
||||||
"BreakDoorGoal.cpp"
|
|
||||||
"BreedGoal.cpp"
|
|
||||||
"BrewingStandMenu.cpp"
|
|
||||||
"BrewingStandTile.cpp"
|
|
||||||
"BrewingStandTileEntity.cpp"
|
|
||||||
"BucketItem.cpp"
|
|
||||||
"Buffer.cpp"
|
|
||||||
"BufferedOutputStream.cpp"
|
|
||||||
"BufferedReader.cpp"
|
|
||||||
"Bush.cpp"
|
|
||||||
"ButtonTile.cpp"
|
|
||||||
"ByteArrayInputStream.cpp"
|
|
||||||
"ByteArrayOutputStream.cpp"
|
|
||||||
"ByteBuffer.cpp"
|
|
||||||
"C4JThread.cpp"
|
|
||||||
"CactusFeature.cpp"
|
|
||||||
"CactusTile.cpp"
|
|
||||||
"CakeTile.cpp"
|
|
||||||
"Calendar.cpp"
|
|
||||||
"CanyonFeature.cpp"
|
|
||||||
"CarrotOnAStickItem.cpp"
|
|
||||||
"CarrotTile.cpp"
|
|
||||||
"CauldronTile.cpp"
|
|
||||||
"CaveFeature.cpp"
|
|
||||||
"CaveSpider.cpp"
|
|
||||||
"ChatPacket.cpp"
|
|
||||||
"ChestTile.cpp"
|
|
||||||
"ChestTileEntity.cpp"
|
|
||||||
"Chicken.cpp"
|
|
||||||
"ChunkPos.cpp"
|
|
||||||
"ChunkStorageProfileDecorator.cpp"
|
|
||||||
"ChunkTilesUpdatePacket.cpp"
|
|
||||||
"ChunkVisibilityAreaPacket.cpp"
|
|
||||||
"ChunkVisibilityPacket.cpp"
|
|
||||||
"Class.cpp"
|
|
||||||
"ClayFeature.cpp"
|
|
||||||
"ClayTile.cpp"
|
|
||||||
"ClientCommandPacket.cpp"
|
|
||||||
"ClientSideMerchant.cpp"
|
|
||||||
"ClockItem.cpp"
|
|
||||||
"ClothDyeRecipes.cpp"
|
|
||||||
"CoalItem.cpp"
|
|
||||||
"CocoaTile.cpp"
|
|
||||||
"Color.cpp"
|
|
||||||
"ColoredTile.cpp"
|
|
||||||
"ColoredTileItem.cpp"
|
|
||||||
"CombatEntry.cpp"
|
|
||||||
"CombatTracker.cpp"
|
|
||||||
"Command.cpp"
|
|
||||||
"CommandBlock.cpp"
|
|
||||||
"CommandBlockEntity.cpp"
|
|
||||||
"CommandDispatcher.cpp"
|
|
||||||
"CommonStats.cpp"
|
|
||||||
"ComparatorTile.cpp"
|
|
||||||
"ComparatorTileEntity.cpp"
|
|
||||||
"CompassItem.cpp"
|
|
||||||
"ComplexItem.cpp"
|
|
||||||
"ComplexItemDataPacket.cpp"
|
|
||||||
"CompoundContainer.cpp"
|
|
||||||
"CompressedTileStorage.cpp"
|
|
||||||
"Connection.cpp"
|
|
||||||
"ConsoleSaveFileConverter.cpp"
|
|
||||||
"ConsoleSaveFileInputStream.cpp"
|
|
||||||
"ConsoleSaveFileOriginal.cpp"
|
|
||||||
"ConsoleSaveFileOutputStream.cpp"
|
|
||||||
"ContainerAckPacket.cpp"
|
|
||||||
"ContainerButtonClickPacket.cpp"
|
|
||||||
"ContainerClickPacket.cpp"
|
|
||||||
"ContainerClosePacket.cpp"
|
|
||||||
"ContainerMenu.cpp"
|
|
||||||
"ContainerOpenPacket.cpp"
|
|
||||||
"ContainerSetContentPacket.cpp"
|
|
||||||
"ContainerSetDataPacket.cpp"
|
|
||||||
"ContainerSetSlotPacket.cpp"
|
|
||||||
"ControlledByPlayerGoal.cpp"
|
|
||||||
"CoralTile.cpp"
|
|
||||||
"Cow.cpp"
|
|
||||||
"CraftItemPacket.cpp"
|
|
||||||
"CraftingContainer.cpp"
|
|
||||||
"CraftingMenu.cpp"
|
|
||||||
"Creature.cpp"
|
|
||||||
"Creeper.cpp"
|
|
||||||
"CropTile.cpp"
|
|
||||||
"CustomLevelSource.cpp"
|
|
||||||
"CustomPayloadPacket.cpp"
|
|
||||||
"DamageEnchantment.cpp"
|
|
||||||
"DamageSource.cpp"
|
|
||||||
"DataInputStream.cpp"
|
|
||||||
"DataLayer.cpp"
|
|
||||||
"DataOutputStream.cpp"
|
|
||||||
"DaylightDetectorTile.cpp"
|
|
||||||
"DaylightDetectorTileEntity.cpp"
|
|
||||||
"DeadBushFeature.cpp"
|
|
||||||
"DeadBushTile.cpp"
|
|
||||||
"DebugOptionsPacket.cpp"
|
|
||||||
"DefaultDispenseItemBehavior.cpp"
|
|
||||||
"DefaultGameModeCommand.cpp"
|
|
||||||
"DefendVillageTargetGoal.cpp"
|
|
||||||
"DelayedRelease.cpp"
|
|
||||||
"DerivedLevelData.cpp"
|
|
||||||
"DesertBiome.cpp"
|
|
||||||
"DesertWellFeature.cpp"
|
|
||||||
"DetectorRailTile.cpp"
|
|
||||||
"DigDurabilityEnchantment.cpp"
|
|
||||||
"DiggerItem.cpp"
|
|
||||||
"DiggingEnchantment.cpp"
|
|
||||||
"Dimension.cpp"
|
|
||||||
"DiodeTile.cpp"
|
|
||||||
"Direction.cpp"
|
|
||||||
"DirectionalTile.cpp"
|
|
||||||
"DirectoryLevelStorage.cpp"
|
|
||||||
"DirectoryLevelStorageSource.cpp"
|
|
||||||
"DirtTile.cpp"
|
|
||||||
"DisconnectPacket.cpp"
|
|
||||||
"DispenseItemBehavior.cpp"
|
|
||||||
"DispenserTile.cpp"
|
|
||||||
"DispenserTileEntity.cpp"
|
|
||||||
"Distort.cpp"
|
|
||||||
"DoorInfo.cpp"
|
|
||||||
"DoorInteractGoal.cpp"
|
|
||||||
"DoorItem.cpp"
|
|
||||||
"DoorTile.cpp"
|
|
||||||
"DownfallLayer.cpp"
|
|
||||||
"DownfallMixerLayer.cpp"
|
|
||||||
"DragonFireball.cpp"
|
|
||||||
"DropperTile.cpp"
|
|
||||||
"DropperTileEntity.cpp"
|
|
||||||
"DummyCriteria.cpp"
|
|
||||||
"DungeonFeature.cpp"
|
|
||||||
"DyePowderItem.cpp"
|
|
||||||
"EatTileGoal.cpp"
|
|
||||||
"EffectCommand.cpp"
|
|
||||||
"EggItem.cpp"
|
|
||||||
"EggTile.cpp"
|
|
||||||
"Emboss.cpp"
|
|
||||||
"EmptyLevelChunk.cpp"
|
|
||||||
"EmptyMapItem.cpp"
|
|
||||||
"EnchantItemCommand.cpp"
|
|
||||||
"EnchantedBookItem.cpp"
|
|
||||||
"Enchantment.cpp"
|
|
||||||
"EnchantmentCategory.cpp"
|
|
||||||
"EnchantmentContainer.cpp"
|
|
||||||
"EnchantmentHelper.cpp"
|
|
||||||
"EnchantmentInstance.cpp"
|
|
||||||
"EnchantmentMenu.cpp"
|
|
||||||
"EnchantmentTableEntity.cpp"
|
|
||||||
"EnchantmentTableTile.cpp"
|
|
||||||
"EndPodiumFeature.cpp"
|
|
||||||
"EnderChestTile.cpp"
|
|
||||||
"EnderChestTileEntity.cpp"
|
|
||||||
"EnderCrystal.cpp"
|
|
||||||
"EnderDragon.cpp"
|
|
||||||
"EnderEyeItem.cpp"
|
|
||||||
"EnderMan.cpp"
|
|
||||||
"EnderpearlItem.cpp"
|
|
||||||
"Enemy.cpp"
|
|
||||||
"Entity.cpp"
|
|
||||||
"EntityActionAtPositionPacket.cpp"
|
|
||||||
"EntityDamageSource.cpp"
|
|
||||||
"EntityEventPacket.cpp"
|
|
||||||
"EntityHorse.cpp"
|
|
||||||
"EntityIO.cpp"
|
|
||||||
"EntityPos.cpp"
|
|
||||||
"EntitySelector.cpp"
|
|
||||||
"ExperienceCommand.cpp"
|
|
||||||
"ExperienceItem.cpp"
|
|
||||||
"ExperienceOrb.cpp"
|
|
||||||
"ExplodePacket.cpp"
|
|
||||||
"Explosion.cpp"
|
|
||||||
"ExtremeHillsBiome.cpp"
|
|
||||||
"EyeOfEnderSignal.cpp"
|
|
||||||
"Facing.cpp"
|
|
||||||
"FacingEnum.cpp"
|
|
||||||
"FallingTile.cpp"
|
|
||||||
"FarmTile.cpp"
|
|
||||||
"FastNoise.cpp"
|
|
||||||
"Feature.cpp"
|
|
||||||
"FenceGateTile.cpp"
|
|
||||||
"FenceTile.cpp"
|
|
||||||
"File.cpp"
|
|
||||||
"FileHeader.cpp"
|
|
||||||
"FileInputStream.cpp"
|
|
||||||
"FileOutputStream.cpp"
|
|
||||||
"FireAspectEnchantment.cpp"
|
|
||||||
"FireChargeItem.cpp"
|
|
||||||
"FireTile.cpp"
|
|
||||||
"Fireball.cpp"
|
|
||||||
"FireworksChargeItem.cpp"
|
|
||||||
"FireworksItem.cpp"
|
|
||||||
"FireworksMenu.cpp"
|
|
||||||
"FireworksRecipe.cpp"
|
|
||||||
"FireworksRocketEntity.cpp"
|
|
||||||
"FishingHook.cpp"
|
|
||||||
"FishingRodItem.cpp"
|
|
||||||
"FixedBiomeSource.cpp"
|
|
||||||
"FlatGeneratorInfo.cpp"
|
|
||||||
"FlatLayer.cpp"
|
|
||||||
"FlatLayerInfo.cpp"
|
|
||||||
"FlatLevelSource.cpp"
|
|
||||||
"FleeSunGoal.cpp"
|
|
||||||
"FlintAndSteelItem.cpp"
|
|
||||||
"FlippedIcon.cpp"
|
|
||||||
"FloatBuffer.cpp"
|
|
||||||
"FloatGoal.cpp"
|
|
||||||
"FlowerFeature.cpp"
|
|
||||||
"FlowerPotTile.cpp"
|
|
||||||
"FlyingMob.cpp"
|
|
||||||
"FoliageColor.cpp"
|
|
||||||
"FollowOwnerGoal.cpp"
|
|
||||||
"FollowParentGoal.cpp"
|
|
||||||
"FoodConstants.cpp"
|
|
||||||
"FoodData.cpp"
|
|
||||||
"FoodItem.cpp"
|
|
||||||
"FoodRecipies.cpp"
|
|
||||||
"ForestBiome.cpp"
|
|
||||||
"FurnaceMenu.cpp"
|
|
||||||
"FurnaceRecipes.cpp"
|
|
||||||
"FurnaceResultSlot.cpp"
|
|
||||||
"FurnaceTile.cpp"
|
|
||||||
"FurnaceTileEntity.cpp"
|
|
||||||
"FuzzyZoomLayer.cpp"
|
|
||||||
"GameCommandPacket.cpp"
|
|
||||||
"GameEventPacket.cpp"
|
|
||||||
"GameModeCommand.cpp"
|
|
||||||
"GameRules.cpp"
|
|
||||||
"GeneralStat.cpp"
|
|
||||||
"GenericStats.cpp"
|
|
||||||
"GetInfoPacket.cpp"
|
|
||||||
"Ghast.cpp"
|
|
||||||
"Giant.cpp"
|
|
||||||
"GiveItemCommand.cpp"
|
|
||||||
"GlassTile.cpp"
|
|
||||||
"GlobalEntity.cpp"
|
|
||||||
"GlowstoneTile.cpp"
|
|
||||||
"Goal.cpp"
|
|
||||||
"GoalSelector.cpp"
|
|
||||||
"GoldenAppleItem.cpp"
|
|
||||||
"Golem.cpp"
|
|
||||||
"GrassColor.cpp"
|
|
||||||
"GrassTile.cpp"
|
|
||||||
"GravelTile.cpp"
|
|
||||||
"GroundBushFeature.cpp"
|
|
||||||
"GrowMushroomIslandLayer.cpp"
|
|
||||||
"HalfSlabTile.cpp"
|
|
||||||
"HalfTransparentTile.cpp"
|
|
||||||
"HangingEntity.cpp"
|
|
||||||
"HangingEntityItem.cpp"
|
|
||||||
"Hasher.cpp"
|
|
||||||
"HatchetItem.cpp"
|
|
||||||
"HayBlockTile.cpp"
|
|
||||||
"HealthBoostMobEffect.cpp"
|
|
||||||
"HealthCriteria.cpp"
|
|
||||||
"HeavyTile.cpp"
|
|
||||||
"HellBiome.cpp"
|
|
||||||
"HellDimension.cpp"
|
|
||||||
"HellFireFeature.cpp"
|
|
||||||
"HellFlatLevelSource.cpp"
|
|
||||||
"HellPortalFeature.cpp"
|
|
||||||
"HellRandomLevelSource.cpp"
|
|
||||||
"HellSpringFeature.cpp"
|
|
||||||
"HitResult.cpp"
|
|
||||||
"HoeItem.cpp"
|
|
||||||
"HopperMenu.cpp"
|
|
||||||
"HopperTile.cpp"
|
|
||||||
"HopperTileEntity.cpp"
|
|
||||||
"HorseInventoryMenu.cpp"
|
|
||||||
"HouseFeature.cpp"
|
|
||||||
"HtmlString.cpp"
|
|
||||||
"HugeMushroomFeature.cpp"
|
|
||||||
"HugeMushroomTile.cpp"
|
|
||||||
"HurtByTargetGoal.cpp"
|
|
||||||
"I18n.cpp"
|
|
||||||
"IceBiome.cpp"
|
|
||||||
"IceTile.cpp"
|
|
||||||
"ImprovedNoise.cpp"
|
|
||||||
"IndirectEntityDamageSource.cpp"
|
|
||||||
"InputStream.cpp"
|
|
||||||
"InputStreamReader.cpp"
|
|
||||||
"InstantenousMobEffect.cpp"
|
|
||||||
"IntBuffer.cpp"
|
|
||||||
"IntCache.cpp"
|
|
||||||
"InteractGoal.cpp"
|
|
||||||
"InteractPacket.cpp"
|
|
||||||
"Inventory.cpp"
|
|
||||||
"InventoryMenu.cpp"
|
|
||||||
"IslandLayer.cpp"
|
|
||||||
"Item.cpp"
|
|
||||||
"ItemDispenseBehaviors.cpp"
|
|
||||||
"ItemEntity.cpp"
|
|
||||||
"ItemFrame.cpp"
|
|
||||||
"ItemInstance.cpp"
|
|
||||||
"ItemStat.cpp"
|
|
||||||
"JavaMath.cpp"
|
|
||||||
"JukeboxTile.cpp"
|
|
||||||
"JumpControl.cpp"
|
|
||||||
"JungleBiome.cpp"
|
|
||||||
"KeepAlivePacket.cpp"
|
|
||||||
"KickPlayerPacket.cpp"
|
|
||||||
"KillCommand.cpp"
|
|
||||||
"KnockbackEnchantment.cpp"
|
|
||||||
"LadderTile.cpp"
|
|
||||||
"LakeFeature.cpp"
|
|
||||||
"Language.cpp"
|
|
||||||
"LargeCaveFeature.cpp"
|
|
||||||
"LargeFeature.cpp"
|
|
||||||
"LargeFireball.cpp"
|
|
||||||
"LargeHellCaveFeature.cpp"
|
|
||||||
"LavaSlime.cpp"
|
|
||||||
"Layer.cpp"
|
|
||||||
"LeafTile.cpp"
|
|
||||||
"LeafTileItem.cpp"
|
|
||||||
"LeapAtTargetGoal.cpp"
|
|
||||||
"LeashFenceKnotEntity.cpp"
|
|
||||||
"LeashItem.cpp"
|
|
||||||
"Level.cpp"
|
|
||||||
"LevelChunk.cpp"
|
|
||||||
"LevelConflictException.cpp"
|
|
||||||
"LevelData.cpp"
|
|
||||||
"LevelEventPacket.cpp"
|
|
||||||
"LevelParticlesPacket.cpp"
|
|
||||||
"LevelSettings.cpp"
|
|
||||||
"LevelSoundPacket.cpp"
|
|
||||||
"LevelStorage.cpp"
|
|
||||||
"LevelStorageProfilerDecorator.cpp"
|
|
||||||
"LevelSummary.cpp"
|
|
||||||
"LevelType.cpp"
|
|
||||||
"LeverTile.cpp"
|
|
||||||
"LightGemFeature.cpp"
|
|
||||||
"LightningBolt.cpp"
|
|
||||||
"LiquidTile.cpp"
|
|
||||||
"LiquidTileDynamic.cpp"
|
|
||||||
"LiquidTileStatic.cpp"
|
|
||||||
"LivingEntity.cpp"
|
|
||||||
"LockedChestTile.cpp"
|
|
||||||
"LoginPacket.cpp"
|
|
||||||
"LookAtPlayerGoal.cpp"
|
|
||||||
"LookAtTradingPlayerGoal.cpp"
|
|
||||||
"LookControl.cpp"
|
|
||||||
"LootBonusEnchantment.cpp"
|
|
||||||
"MakeLoveGoal.cpp"
|
|
||||||
"MapItem.cpp"
|
|
||||||
"MapItemSavedData.cpp"
|
|
||||||
"Material.cpp"
|
|
||||||
"MaterialColor.cpp"
|
|
||||||
"McRegionChunkStorage.cpp"
|
|
||||||
"McRegionLevelStorage.cpp"
|
|
||||||
"McRegionLevelStorageSource.cpp"
|
|
||||||
"MegaTreeFeature.cpp"
|
|
||||||
"MeleeAttackGoal.cpp"
|
|
||||||
"MelonTile.cpp"
|
|
||||||
"MenuBackup.cpp"
|
|
||||||
"MerchantContainer.cpp"
|
|
||||||
"MerchantMenu.cpp"
|
|
||||||
"MerchantRecipe.cpp"
|
|
||||||
"MerchantRecipeList.cpp"
|
|
||||||
"MerchantResultSlot.cpp"
|
|
||||||
"MetalTile.cpp"
|
|
||||||
"MilkBucketItem.cpp"
|
|
||||||
"MineShaftFeature.cpp"
|
|
||||||
"MineShaftPieces.cpp"
|
|
||||||
"MineShaftStart.cpp"
|
|
||||||
"Minecart.cpp"
|
|
||||||
"MinecartChest.cpp"
|
|
||||||
"MinecartContainer.cpp"
|
|
||||||
"MinecartFurnace.cpp"
|
|
||||||
"MinecartHopper.cpp"
|
|
||||||
"MinecartItem.cpp"
|
|
||||||
"MinecartRideable.cpp"
|
|
||||||
"MinecartSpawner.cpp"
|
|
||||||
"MinecartTNT.cpp"
|
|
||||||
"Minecraft.World.cpp"
|
|
||||||
"Mob.cpp"
|
|
||||||
"MobCategory.cpp"
|
|
||||||
"MobEffect.cpp"
|
|
||||||
"MobEffectInstance.cpp"
|
|
||||||
"MobSpawner.cpp"
|
|
||||||
"MobSpawnerTile.cpp"
|
|
||||||
"MobSpawnerTileEntity.cpp"
|
|
||||||
"MockedLevelStorage.cpp"
|
|
||||||
"ModifiableAttributeInstance.cpp"
|
|
||||||
"Monster.cpp"
|
|
||||||
"MonsterRoomFeature.cpp"
|
|
||||||
"MoveControl.cpp"
|
|
||||||
"MoveEntityPacket.cpp"
|
|
||||||
"MoveEntityPacketSmall.cpp"
|
|
||||||
"MoveIndoorsGoal.cpp"
|
|
||||||
"MovePlayerPacket.cpp"
|
|
||||||
"MoveThroughVillageGoal.cpp"
|
|
||||||
"MoveTowardsRestrictionGoal.cpp"
|
|
||||||
"MoveTowardsTargetGoal.cpp"
|
|
||||||
"Mth.cpp"
|
|
||||||
"MultiEntityMobPart.cpp"
|
|
||||||
"MultiTextureTileItem.cpp"
|
|
||||||
"Mushroom.cpp"
|
|
||||||
"MushroomCow.cpp"
|
|
||||||
"MushroomIslandBiome.cpp"
|
|
||||||
"MusicTileEntity.cpp"
|
|
||||||
"MycelTile.cpp"
|
|
||||||
"NameTagItem.cpp"
|
|
||||||
"NbtIo.cpp"
|
|
||||||
"NearestAttackableTargetGoal.cpp"
|
|
||||||
"NetherBridgeFeature.cpp"
|
|
||||||
"NetherBridgePieces.cpp"
|
|
||||||
"NetherSphere.cpp"
|
|
||||||
"NetherWartTile.cpp"
|
|
||||||
"NetherrackTile.cpp"
|
|
||||||
"Node.cpp"
|
|
||||||
"NonTameRandomTargetGoal.cpp"
|
|
||||||
"NotGateTile.cpp"
|
|
||||||
"NoteBlockTile.cpp"
|
|
||||||
"Npc.cpp"
|
|
||||||
"Objective.cpp"
|
|
||||||
"ObjectiveCriteria.cpp"
|
|
||||||
"ObsidianTile.cpp"
|
|
||||||
"Ocelot.cpp"
|
|
||||||
"OcelotAttackGoal.cpp"
|
|
||||||
"OcelotSitOnTileGoal.cpp"
|
|
||||||
"OfferFlowerGoal.cpp"
|
|
||||||
"OldChunkStorage.cpp"
|
|
||||||
"OpenDoorGoal.cpp"
|
|
||||||
"OreFeature.cpp"
|
|
||||||
"OreRecipies.cpp"
|
|
||||||
"OreTile.cpp"
|
|
||||||
"OwnerHurtByTargetGoal.cpp"
|
|
||||||
"OwnerHurtTargetGoal.cpp"
|
|
||||||
"OxygenEnchantment.cpp"
|
|
||||||
"Packet.cpp"
|
|
||||||
"PacketListener.cpp"
|
|
||||||
"Painting.cpp"
|
|
||||||
"PanicGoal.cpp"
|
|
||||||
"Path.cpp"
|
|
||||||
"PathFinder.cpp"
|
|
||||||
"PathNavigation.cpp"
|
|
||||||
"PathfinderMob.cpp"
|
|
||||||
"PerformanceTimer.cpp"
|
|
||||||
"PerlinNoise.cpp"
|
|
||||||
"PerlinSimplexNoise.cpp"
|
|
||||||
"PickaxeItem.cpp"
|
|
||||||
"Pig.cpp"
|
|
||||||
"PigZombie.cpp"
|
|
||||||
"PineFeature.cpp"
|
|
||||||
"PistonBaseTile.cpp"
|
|
||||||
"PistonExtensionTile.cpp"
|
|
||||||
"PistonMovingPiece.cpp"
|
|
||||||
"PistonPieceEntity.cpp"
|
|
||||||
"PistonTileItem.cpp"
|
|
||||||
"PlainsBiome.cpp"
|
|
||||||
"PlayGoal.cpp"
|
|
||||||
"Player.cpp"
|
|
||||||
"PlayerAbilitiesPacket.cpp"
|
|
||||||
"PlayerActionPacket.cpp"
|
|
||||||
"PlayerCommandPacket.cpp"
|
|
||||||
"PlayerEnderChestContainer.cpp"
|
|
||||||
"PlayerInfoPacket.cpp"
|
|
||||||
"PlayerInputPacket.cpp"
|
|
||||||
"PlayerTeam.cpp"
|
|
||||||
"PortalForcer.cpp"
|
|
||||||
"PortalTile.cpp"
|
|
||||||
"Pos.cpp"
|
|
||||||
"PotatoTile.cpp"
|
|
||||||
"PotionBrewing.cpp"
|
|
||||||
"PotionItem.cpp"
|
|
||||||
"PoweredMetalTile.cpp"
|
|
||||||
"PoweredRailTile.cpp"
|
|
||||||
"PreLoginPacket.cpp"
|
|
||||||
"PressurePlateTile.cpp"
|
|
||||||
"PrimedTnt.cpp"
|
|
||||||
"ProtectionEnchantment.cpp"
|
|
||||||
"PumpkinFeature.cpp"
|
|
||||||
"PumpkinTile.cpp"
|
|
||||||
"QuartzBlockTile.cpp"
|
|
||||||
"RailTile.cpp"
|
|
||||||
"RainforestBiome.cpp"
|
|
||||||
"Random.cpp"
|
|
||||||
"RandomLevelSource.cpp"
|
|
||||||
"RandomLookAroundGoal.cpp"
|
|
||||||
"RandomPos.cpp"
|
|
||||||
"RandomScatteredLargeFeature.cpp"
|
|
||||||
"RandomStrollGoal.cpp"
|
|
||||||
"RangedAttackGoal.cpp"
|
|
||||||
"RangedAttribute.cpp"
|
|
||||||
"Rarity.cpp"
|
|
||||||
"Recipes.cpp"
|
|
||||||
"RecordingItem.cpp"
|
|
||||||
"RedStoneDustTile.cpp"
|
|
||||||
"RedStoneItem.cpp"
|
|
||||||
"RedStoneOreTile.cpp"
|
|
||||||
"RedlightTile.cpp"
|
|
||||||
"Redstone.cpp"
|
|
||||||
"ReedTile.cpp"
|
|
||||||
"ReedsFeature.cpp"
|
|
||||||
"Region.cpp"
|
|
||||||
"RegionFile.cpp"
|
|
||||||
"RegionFileCache.cpp"
|
|
||||||
"RegionHillsLayer.cpp"
|
|
||||||
"RemoveEntitiesPacket.cpp"
|
|
||||||
"RemoveMobEffectPacket.cpp"
|
|
||||||
"RepairContainer.cpp"
|
|
||||||
"RepairResultSlot.cpp"
|
|
||||||
"RepeaterTile.cpp"
|
|
||||||
"RespawnPacket.cpp"
|
|
||||||
"RestrictOpenDoorGoal.cpp"
|
|
||||||
"RestrictSunGoal.cpp"
|
|
||||||
"ResultContainer.cpp"
|
|
||||||
"ResultSlot.cpp"
|
|
||||||
"RiverInitLayer.cpp"
|
|
||||||
"RiverLayer.cpp"
|
|
||||||
"RiverMixerLayer.cpp"
|
|
||||||
"Rotate.cpp"
|
|
||||||
"RotateHeadPacket.cpp"
|
|
||||||
"RotatedPillarTile.cpp"
|
|
||||||
"RunAroundLikeCrazyGoal.cpp"
|
|
||||||
"SaddleItem.cpp"
|
|
||||||
"SandFeature.cpp"
|
|
||||||
"SandStoneTile.cpp"
|
|
||||||
"Sapling.cpp"
|
|
||||||
"SaplingTileItem.cpp"
|
|
||||||
"SavedData.cpp"
|
|
||||||
"SavedDataStorage.cpp"
|
|
||||||
"Scale.cpp"
|
|
||||||
"ScatteredFeaturePieces.cpp"
|
|
||||||
"Score.cpp"
|
|
||||||
"Scoreboard.cpp"
|
|
||||||
"SeedFoodItem.cpp"
|
|
||||||
"SeedItem.cpp"
|
|
||||||
"Sensing.cpp"
|
|
||||||
"ServerSettingsChangedPacket.cpp"
|
|
||||||
"ServersideAttributeMap.cpp"
|
|
||||||
"SetCarriedItemPacket.cpp"
|
|
||||||
"SetCreativeModeSlotPacket.cpp"
|
|
||||||
"SetDisplayObjectivePacket.cpp"
|
|
||||||
"SetEntityDataPacket.cpp"
|
|
||||||
"SetEntityLinkPacket.cpp"
|
|
||||||
"SetEntityMotionPacket.cpp"
|
|
||||||
"SetEquippedItemPacket.cpp"
|
|
||||||
"SetExperiencePacket.cpp"
|
|
||||||
"SetHealthPacket.cpp"
|
|
||||||
"SetObjectivePacket.cpp"
|
|
||||||
"SetPlayerTeamPacket.cpp"
|
|
||||||
"SetScorePacket.cpp"
|
|
||||||
"SetSpawnPositionPacket.cpp"
|
|
||||||
"SetTimePacket.cpp"
|
|
||||||
"ShapedRecipy.cpp"
|
|
||||||
"ShapelessRecipy.cpp"
|
|
||||||
"SharedConstants.cpp"
|
|
||||||
"SharedMonsterAttributes.cpp"
|
|
||||||
"ShearsItem.cpp"
|
|
||||||
"Sheep.cpp"
|
|
||||||
"ShoreLayer.cpp"
|
|
||||||
"ShovelItem.cpp"
|
|
||||||
"SignItem.cpp"
|
|
||||||
"SignTile.cpp"
|
|
||||||
"SignTileEntity.cpp"
|
|
||||||
"SignUpdatePacket.cpp"
|
|
||||||
"Silverfish.cpp"
|
|
||||||
"SimpleContainer.cpp"
|
|
||||||
"SimpleFoiledItem.cpp"
|
|
||||||
"SimplexNoise.cpp"
|
|
||||||
"SitGoal.cpp"
|
|
||||||
"Skeleton.cpp"
|
|
||||||
"SkullItem.cpp"
|
|
||||||
"SkullTile.cpp"
|
|
||||||
"SkullTileEntity.cpp"
|
|
||||||
"Slime.cpp"
|
|
||||||
"Slot.cpp"
|
|
||||||
"SmallFireball.cpp"
|
|
||||||
"SmoothFloat.cpp"
|
|
||||||
"SmoothLayer.cpp"
|
|
||||||
"SmoothStoneBrickTile.cpp"
|
|
||||||
"SmoothZoomLayer.cpp"
|
|
||||||
"SnowItem.cpp"
|
|
||||||
"SnowMan.cpp"
|
|
||||||
"SnowTile.cpp"
|
|
||||||
"Snowball.cpp"
|
|
||||||
"SnowballItem.cpp"
|
|
||||||
"Socket.cpp"
|
|
||||||
"SoulSandTile.cpp"
|
|
||||||
"SparseDataStorage.cpp"
|
|
||||||
"SparseLightStorage.cpp"
|
|
||||||
"SpawnEggItem.cpp"
|
|
||||||
"Spider.cpp"
|
|
||||||
"SpikeFeature.cpp"
|
|
||||||
"Sponge.cpp"
|
|
||||||
"SpringFeature.cpp"
|
|
||||||
"SpruceFeature.cpp"
|
|
||||||
"Squid.cpp"
|
|
||||||
"StainedGlassBlock.cpp"
|
|
||||||
"StainedGlassPaneBlock.cpp"
|
|
||||||
"StairTile.cpp"
|
|
||||||
"Stat.cpp"
|
|
||||||
"Stats.cpp"
|
|
||||||
"StemTile.cpp"
|
|
||||||
"StoneButtonTile.cpp"
|
|
||||||
"StoneMonsterTile.cpp"
|
|
||||||
"StoneSlabTile.cpp"
|
|
||||||
"StoneSlabTileItem.cpp"
|
|
||||||
"StoneTile.cpp"
|
|
||||||
"StringHelpers.cpp"
|
|
||||||
"StrongholdFeature.cpp"
|
|
||||||
"StrongholdPieces.cpp"
|
|
||||||
"StructureFeature.cpp"
|
|
||||||
"StructureFeatureIO.cpp"
|
|
||||||
"StructureFeatureSavedData.cpp"
|
|
||||||
"StructurePiece.cpp"
|
|
||||||
"StructureRecipies.cpp"
|
|
||||||
"StructureStart.cpp"
|
|
||||||
"SwampBiome.cpp"
|
|
||||||
"SwampRiversLayer.cpp"
|
|
||||||
"SwampTreeFeature.cpp"
|
|
||||||
"SwellGoal.cpp"
|
|
||||||
"SynchedEntityData.cpp"
|
|
||||||
"Synth.cpp"
|
|
||||||
"Tag.cpp"
|
|
||||||
"TaigaBiome.cpp"
|
|
||||||
"TakeFlowerGoal.cpp"
|
|
||||||
"TakeItemEntityPacket.cpp"
|
|
||||||
"TallGrass.cpp"
|
|
||||||
"TallGrassFeature.cpp"
|
|
||||||
"TamableAnimal.cpp"
|
|
||||||
"TargetGoal.cpp"
|
|
||||||
"Team.cpp"
|
|
||||||
"TeleportEntityPacket.cpp"
|
|
||||||
"TemperatureLayer.cpp"
|
|
||||||
"TemperatureMixerLayer.cpp"
|
|
||||||
"TemptGoal.cpp"
|
|
||||||
"TextureAndGeometryChangePacket.cpp"
|
|
||||||
"TextureAndGeometryPacket.cpp"
|
|
||||||
"TextureChangePacket.cpp"
|
|
||||||
"TexturePacket.cpp"
|
|
||||||
"TheEndBiome.cpp"
|
|
||||||
"TheEndBiomeDecorator.cpp"
|
|
||||||
"TheEndDimension.cpp"
|
|
||||||
"TheEndLevelRandomLevelSource.cpp"
|
|
||||||
"TheEndPortal.cpp"
|
|
||||||
"TheEndPortalFrameTile.cpp"
|
|
||||||
"TheEndPortalTileEntity.cpp"
|
|
||||||
"ThinFenceTile.cpp"
|
|
||||||
"ThornsEnchantment.cpp"
|
|
||||||
"ThreadName.cpp"
|
|
||||||
"Throwable.cpp"
|
|
||||||
"ThrownEgg.cpp"
|
|
||||||
"ThrownEnderpearl.cpp"
|
|
||||||
"ThrownExpBottle.cpp"
|
|
||||||
"ThrownPotion.cpp"
|
|
||||||
"TickNextTickData.cpp"
|
|
||||||
"Tile.cpp"
|
|
||||||
"TileDestructionPacket.cpp"
|
|
||||||
"TileEditorOpenPacket.cpp"
|
|
||||||
"TileEntity.cpp"
|
|
||||||
"TileEntityDataPacket.cpp"
|
|
||||||
"TileEventData.cpp"
|
|
||||||
"TileEventPacket.cpp"
|
|
||||||
"TileItem.cpp"
|
|
||||||
"TilePlanterItem.cpp"
|
|
||||||
"TilePos.cpp"
|
|
||||||
"TileUpdatePacket.cpp"
|
|
||||||
"TimeCommand.cpp"
|
|
||||||
"TntTile.cpp"
|
|
||||||
"ToggleDownfallCommand.cpp"
|
|
||||||
"ToolRecipies.cpp"
|
|
||||||
"TopSnowTile.cpp"
|
|
||||||
"TorchTile.cpp"
|
|
||||||
"TradeItemPacket.cpp"
|
|
||||||
"TradeWithPlayerGoal.cpp"
|
|
||||||
"TransparentTile.cpp"
|
|
||||||
"TrapDoorTile.cpp"
|
|
||||||
"TrapMenu.cpp"
|
|
||||||
"TreeFeature.cpp"
|
|
||||||
"TreeTile.cpp"
|
|
||||||
"TripWireSourceTile.cpp"
|
|
||||||
"TripWireTile.cpp"
|
|
||||||
"UntouchingEnchantment.cpp"
|
|
||||||
"UpdateAttributesPacket.cpp"
|
|
||||||
"UpdateGameRuleProgressPacket.cpp"
|
|
||||||
"UpdateMobEffectPacket.cpp"
|
|
||||||
"UpdateProgressPacket.cpp"
|
|
||||||
"UseItemPacket.cpp"
|
|
||||||
"Vec3.cpp"
|
|
||||||
"Village.cpp"
|
|
||||||
"VillageFeature.cpp"
|
|
||||||
"VillagePieces.cpp"
|
|
||||||
"VillageSiege.cpp"
|
|
||||||
"Villager.cpp"
|
|
||||||
"VillagerGolem.cpp"
|
|
||||||
"Villages.cpp"
|
|
||||||
"VineTile.cpp"
|
|
||||||
"VinesFeature.cpp"
|
|
||||||
"VoronoiZoom.cpp"
|
|
||||||
"WallTile.cpp"
|
|
||||||
"WaterAnimal.cpp"
|
|
||||||
"WaterColor.cpp"
|
|
||||||
"WaterLevelChunk.cpp"
|
|
||||||
"WaterLilyTile.cpp"
|
|
||||||
"WaterLilyTileItem.cpp"
|
|
||||||
"WaterWorkerEnchantment.cpp"
|
|
||||||
"WaterlilyFeature.cpp"
|
|
||||||
"WeaponItem.cpp"
|
|
||||||
"WeaponRecipies.cpp"
|
|
||||||
"WebTile.cpp"
|
|
||||||
"WeighedRandom.cpp"
|
|
||||||
"WeighedTreasure.cpp"
|
|
||||||
"WeightedPressurePlateTile.cpp"
|
|
||||||
"Witch.cpp"
|
|
||||||
"WitherBoss.cpp"
|
|
||||||
"WitherSkull.cpp"
|
|
||||||
"Wolf.cpp"
|
|
||||||
"WoodButtonTile.cpp"
|
|
||||||
"WoodSlabTile.cpp"
|
|
||||||
"WoodTile.cpp"
|
|
||||||
"WoolCarpetTile.cpp"
|
|
||||||
"WoolTileItem.cpp"
|
|
||||||
"WorkbenchTile.cpp"
|
|
||||||
"XZPacket.cpp"
|
|
||||||
"Zombie.cpp"
|
|
||||||
"ZoomLayer.cpp"
|
|
||||||
"compression.cpp"
|
|
||||||
"stdafx.cpp"
|
|
||||||
"system.cpp"
|
|
||||||
)
|
|
||||||
Loading…
Reference in a new issue