mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
- Introduced ServerLogger for logging startup steps and world I/O operations. - Implemented ServerProperties for loading and saving server configuration from `server.properties`. - Added WorldManager to handle world loading and creation based on server properties. - Updated ServerMain to integrate server properties loading and world management. - Enhanced project files to include new source and header files for the server components.
34 lines
992 B
XML
34 lines
992 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup>
|
|
<Filter Include="Server">
|
|
<UniqueIdentifier>{A8A47C24-66C0-4912-9D34-2CBF87F1D707}</UniqueIdentifier>
|
|
</Filter>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="ServerLogger.cpp">
|
|
<Filter>Server</Filter>
|
|
</ClCompile>
|
|
<ClCompile Include="ServerProperties.cpp">
|
|
<Filter>Server</Filter>
|
|
</ClCompile>
|
|
<ClCompile Include="WorldManager.cpp">
|
|
<Filter>Server</Filter>
|
|
</ClCompile>
|
|
<ClCompile Include="Windows64\ServerMain.cpp">
|
|
<Filter>Server</Filter>
|
|
</ClCompile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="ServerLogger.h">
|
|
<Filter>Server</Filter>
|
|
</ClInclude>
|
|
<ClInclude Include="ServerProperties.h">
|
|
<Filter>Server</Filter>
|
|
</ClInclude>
|
|
<ClInclude Include="WorldManager.h">
|
|
<Filter>Server</Filter>
|
|
</ClInclude>
|
|
</ItemGroup>
|
|
</Project>
|