diff --git a/.gitignore b/.gitignore index dbbd78f..6647f99 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,7 @@ mono_crash.* # Build results -[Dd]ebug/ +#[Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ diff --git a/premake5.lua b/premake5.lua index 010844e..25fe887 100644 --- a/premake5.lua +++ b/premake5.lua @@ -9,13 +9,27 @@ workspace "fake-mario" "release" } -outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}" -sfmldir = "%{wks.location}/vendor/SFML-3.0.0" -imguidir = "%{wks.location}/vendor/imgui" +local outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}" +local vs_intdir = "$(SolutionDir)intermediate-files/" .. outputdir +local intdir = "%{wks.location}/intermediate-files/" .. outputdir +local vs_bindir = "$(SolutionDir)bin/" .. outputdir +local bindir = "%{wks.location}/bin/" .. outputdir +local linuxlibdir = "%{wks.location}/vendor/SFML/lib/linux" +local vs_libreldir = "$(SolutionDir)vendor/SFML/lib/MinSizeRel" +local libreldir = "%{wks.location}/vendor/SFML/lib/MinSizeRel" +local vs_libdebugdir = "$(SolutionDir)vendor/SFML/lib/Debug" +local libdebugdir = "%{wks.location}/vendor/SFML/lib/Debug" +local vs_sfmldir = "$(SolutionDir)vendor/SFML" +local sfmldir = "%{wks.location}/vendor/SFML" +local vs_imguidir = "$(SolutionDir)vendor/imgui" +local imguidir = "%{wks.location}/vendor/imgui" +local vs_includedir = "$(SolutionDir)include" +local includedir = "%{wks.location}/include" project "fake-mario" cppdialect "C++17" language "C++" + defines "SFML_STATIC" files { @@ -29,56 +43,64 @@ project "fake-mario" "vendor/imgui/imgui-SFML.cpp" } - filter "action:vs*" - targetdir ("$(SolutionDir)bin/" .. outputdir) - objdir ("$(SolutionDir)intermediate-files/" .. outputdir) - libdirs "$(SolutionDir)vendor/SFML-3.0.0/lib" + --visual studio-- + filter {"action:vs*", "system:windows"} + targetdir (vs_bindir ) + objdir (vs_intdir) + staticruntime "on" includedirs { - "$(SolutionDir)include", - "$(SolutionDir)vendor/SFML-3.0.0/include", - "$(SolutionDir)vendor/imgui" + vs_includedir, + vs_sfmldir .. "/include", + vs_imguidir } - filter {"not action:vs*", "system:windows"} - targetdir ("%{wks.location}/bin/" .. outputdir) - objdir ("%{wks.location}/intermediate-files/" .. outputdir) - libdirs "%{wks.location}/vendor/SFML-3.0.0/lib" - includedirs - { - "%{wks.location}/include", - "%{wks.location}/vendor/imgui" - } + filter {"action:vs*", "system:windows", "configurations:debug"} + libdirs {vs_libdebugdir} - filter {"not action:vs*", "system:linux"} - targetdir ("%{wks.location}/bin/" .. outputdir) - objdir ("%{wks.location}/intermediate-files/" .. outputdir) + filter {"action:vs*", "system:windows", "configurations:release"} + libdirs {vs_libreldir} + + --not visual studio on windows-- + filter {"not action:vs*", "system:windows"} + targetdir (bindir) + objdir (intdir) includedirs { - "%{wks.location}/include", - "%{wks.location}/vendor/imgui" - } + includedir, + imguidir + } + + filter {"not action:vs*", "system:windows", "configurations:debug"} + libdirs {libdebugdir} + + filter {"not action:vs*", "system:windows", "configurations:release"} + libdirs {libreldir} + + + --platform specific settings-- filter{"system:windows"} - defines "SFML_STATIC" systemversion "latest" defines "PLATFORM_WINDOWS" filter {"system:windows", "configurations:debug"} kind "ConsoleApp" + defines{"_DEBUG", "_CONSOLE"} + runtime "Debug" links { "sfml-graphics-s-d", "sfml-window-s-d", "opengl32", "gdi32", - "freetype", + "freetyped", "sfml-audio-s-d", - "flac", - "vorbisenc", - "vorbisfile", - "vorbis", - "ogg", + "flacd", + "vorbisencd", + "vorbisfiled", + "vorbisd", + "oggd", "sfml-network-s-d", "ws2_32", "sfml-system-s-d", @@ -87,8 +109,11 @@ project "fake-mario" filter {"system:windows", "configurations:release"} kind "WindowedApp" - optimize "on" + optimize "Speed" + inlining "Auto" entrypoint "mainCRTStartup" + defines{"NDEBUG"} + runtime "Release" links { "sfml-graphics-s", @@ -109,6 +134,15 @@ project "fake-mario" } filter {"system:linux"} + targetdir (bindir) + objdir (intdir) + libdirs{linuxlibdir} + includedirs + { + includedir, + sfmldir .. "/include", + imguidir + } systemversion "latest" defines "PLATFORM_LINUX" links @@ -119,12 +153,18 @@ project "fake-mario" "sfml-network", "sfml-system", "OpenGL" + } filter {"system:linux" , "configurations:debug"} kind "ConsoleApp" + symbols "on" + runtime "Debug" filter {"system:linux" , "configurations:release"} kind "WindowedApp" - optimize "on" + optimize "Speed" + inlining "Auto" entrypoint "mainCRTStartup" + symbols "off" + runtime "Release" diff --git a/vendor/SFML-3.0.0/lib/FLAC.lib b/vendor/SFML-3.0.0/lib/FLAC.lib deleted file mode 100644 index b47ada9..0000000 Binary files a/vendor/SFML-3.0.0/lib/FLAC.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/FLACd.lib b/vendor/SFML-3.0.0/lib/FLACd.lib deleted file mode 100644 index 26dd507..0000000 Binary files a/vendor/SFML-3.0.0/lib/FLACd.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/freetype.lib b/vendor/SFML-3.0.0/lib/freetype.lib deleted file mode 100644 index a255e77..0000000 Binary files a/vendor/SFML-3.0.0/lib/freetype.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-audio-d.so b/vendor/SFML-3.0.0/lib/libsfml-audio-d.so deleted file mode 120000 index 0c46cd3..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-audio-d.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-audio-d.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-audio-d.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-audio-d.so.3.0 deleted file mode 120000 index fcbe14b..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-audio-d.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-audio-d.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-audio-d.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-audio-d.so.3.0.0 deleted file mode 100644 index 8cbe225..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-audio-d.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-audio-s.a b/vendor/SFML-3.0.0/lib/libsfml-audio-s.a deleted file mode 100644 index bf5dbaa..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-audio-s.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-audio.so b/vendor/SFML-3.0.0/lib/libsfml-audio.so deleted file mode 120000 index 8c24cea..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-audio.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-audio.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-audio.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-audio.so.3.0 deleted file mode 120000 index 6ff03e8..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-audio.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-audio.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-audio.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-audio.so.3.0.0 deleted file mode 100644 index a7c81b8..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-audio.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so b/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so deleted file mode 120000 index 9bdcd0b..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-graphics-d.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so.3.0 deleted file mode 120000 index 17d84af..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-graphics-d.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so.3.0.0 deleted file mode 100644 index b66d374..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-graphics-d.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-graphics-s-d.a b/vendor/SFML-3.0.0/lib/libsfml-graphics-s-d.a deleted file mode 100644 index e3cb14c..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-graphics-s-d.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-graphics-s.a b/vendor/SFML-3.0.0/lib/libsfml-graphics-s.a deleted file mode 100644 index 7826d41..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-graphics-s.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-graphics.so b/vendor/SFML-3.0.0/lib/libsfml-graphics.so deleted file mode 120000 index be1a5ac..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-graphics.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-graphics.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-graphics.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-graphics.so.3.0 deleted file mode 120000 index 96b4cab..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-graphics.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-graphics.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-graphics.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-graphics.so.3.0.0 deleted file mode 100644 index 8d8807e..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-graphics.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-network-d.so b/vendor/SFML-3.0.0/lib/libsfml-network-d.so deleted file mode 120000 index d485e6b..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-network-d.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-network-d.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-network-d.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-network-d.so.3.0 deleted file mode 120000 index 67557e4..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-network-d.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-network-d.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-network-d.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-network-d.so.3.0.0 deleted file mode 100644 index e974169..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-network-d.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-network-s-d.a b/vendor/SFML-3.0.0/lib/libsfml-network-s-d.a deleted file mode 100644 index b2e8c01..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-network-s-d.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-network-s.a b/vendor/SFML-3.0.0/lib/libsfml-network-s.a deleted file mode 100644 index a7a825d..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-network-s.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-network.so b/vendor/SFML-3.0.0/lib/libsfml-network.so deleted file mode 120000 index 34c4b82..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-network.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-network.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-network.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-network.so.3.0 deleted file mode 120000 index e9db511..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-network.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-network.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-network.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-network.so.3.0.0 deleted file mode 100644 index cdd0cc3..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-network.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-system-d.so b/vendor/SFML-3.0.0/lib/libsfml-system-d.so deleted file mode 120000 index c7c1b7f..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-system-d.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-system-d.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-system-d.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-system-d.so.3.0 deleted file mode 120000 index a2d80e5..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-system-d.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-system-d.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-system-d.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-system-d.so.3.0.0 deleted file mode 100644 index f252917..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-system-d.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-system-s-d.a b/vendor/SFML-3.0.0/lib/libsfml-system-s-d.a deleted file mode 100644 index fa38c0b..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-system-s-d.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-system-s.a b/vendor/SFML-3.0.0/lib/libsfml-system-s.a deleted file mode 100644 index 69f4644..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-system-s.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-system.so b/vendor/SFML-3.0.0/lib/libsfml-system.so deleted file mode 120000 index d588454..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-system.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-system.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-system.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-system.so.3.0 deleted file mode 120000 index 980605b..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-system.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-system.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-system.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-system.so.3.0.0 deleted file mode 100644 index 36a30d6..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-system.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-window-d.so b/vendor/SFML-3.0.0/lib/libsfml-window-d.so deleted file mode 120000 index a391111..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-window-d.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-window-d.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-window-d.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-window-d.so.3.0 deleted file mode 120000 index a49b4ff..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-window-d.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-window-d.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-window-d.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-window-d.so.3.0.0 deleted file mode 100644 index 448a28d..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-window-d.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-window-s-d.a b/vendor/SFML-3.0.0/lib/libsfml-window-s-d.a deleted file mode 100644 index d5b2c43..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-window-s-d.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-window-s.a b/vendor/SFML-3.0.0/lib/libsfml-window-s.a deleted file mode 100644 index ae174b6..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-window-s.a and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-window.so b/vendor/SFML-3.0.0/lib/libsfml-window.so deleted file mode 120000 index a6f241a..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-window.so +++ /dev/null @@ -1 +0,0 @@ -libsfml-window.so.3.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-window.so.3.0 b/vendor/SFML-3.0.0/lib/libsfml-window.so.3.0 deleted file mode 120000 index ed9e6ba..0000000 --- a/vendor/SFML-3.0.0/lib/libsfml-window.so.3.0 +++ /dev/null @@ -1 +0,0 @@ -libsfml-window.so.3.0.0 \ No newline at end of file diff --git a/vendor/SFML-3.0.0/lib/libsfml-window.so.3.0.0 b/vendor/SFML-3.0.0/lib/libsfml-window.so.3.0.0 deleted file mode 100644 index 53e07e4..0000000 Binary files a/vendor/SFML-3.0.0/lib/libsfml-window.so.3.0.0 and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/ogg.lib b/vendor/SFML-3.0.0/lib/ogg.lib deleted file mode 100644 index 2e7ee40..0000000 Binary files a/vendor/SFML-3.0.0/lib/ogg.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/oggd.lib b/vendor/SFML-3.0.0/lib/oggd.lib deleted file mode 100644 index 43fae30..0000000 Binary files a/vendor/SFML-3.0.0/lib/oggd.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-audio-d.lib b/vendor/SFML-3.0.0/lib/sfml-audio-d.lib deleted file mode 100644 index adde801..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-audio-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-audio-s.lib b/vendor/SFML-3.0.0/lib/sfml-audio-s.lib deleted file mode 100644 index bbf9f2f..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-audio-s.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-audio.lib b/vendor/SFML-3.0.0/lib/sfml-audio.lib deleted file mode 100644 index 6ab5c35..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-audio.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-graphics-d.lib b/vendor/SFML-3.0.0/lib/sfml-graphics-d.lib deleted file mode 100644 index 5121280..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-graphics-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-graphics-s-d.lib b/vendor/SFML-3.0.0/lib/sfml-graphics-s-d.lib deleted file mode 100644 index c5e745b..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-graphics-s-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-graphics-s.lib b/vendor/SFML-3.0.0/lib/sfml-graphics-s.lib deleted file mode 100644 index 7f0fc50..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-graphics-s.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-graphics.lib b/vendor/SFML-3.0.0/lib/sfml-graphics.lib deleted file mode 100644 index df29f76..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-graphics.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-main-s-d.lib b/vendor/SFML-3.0.0/lib/sfml-main-s-d.lib deleted file mode 100644 index 43ff889..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-main-s-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-main-s.lib b/vendor/SFML-3.0.0/lib/sfml-main-s.lib deleted file mode 100644 index 495b101..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-main-s.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-network-d.lib b/vendor/SFML-3.0.0/lib/sfml-network-d.lib deleted file mode 100644 index ee144aa..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-network-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-network-s-d.lib b/vendor/SFML-3.0.0/lib/sfml-network-s-d.lib deleted file mode 100644 index 277b393..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-network-s-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-network-s.lib b/vendor/SFML-3.0.0/lib/sfml-network-s.lib deleted file mode 100644 index 1cd4cec..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-network-s.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-network.lib b/vendor/SFML-3.0.0/lib/sfml-network.lib deleted file mode 100644 index 2bf4388..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-network.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-system-d.lib b/vendor/SFML-3.0.0/lib/sfml-system-d.lib deleted file mode 100644 index 5c9dd82..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-system-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-system-s-d.lib b/vendor/SFML-3.0.0/lib/sfml-system-s-d.lib deleted file mode 100644 index 639d815..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-system-s-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-system-s.lib b/vendor/SFML-3.0.0/lib/sfml-system-s.lib deleted file mode 100644 index 0b3e74f..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-system-s.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-system.lib b/vendor/SFML-3.0.0/lib/sfml-system.lib deleted file mode 100644 index e17ebdf..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-system.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-window-d.lib b/vendor/SFML-3.0.0/lib/sfml-window-d.lib deleted file mode 100644 index 5e79a22..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-window-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-window-s-d.lib b/vendor/SFML-3.0.0/lib/sfml-window-s-d.lib deleted file mode 100644 index 99ad8c9..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-window-s-d.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-window-s.lib b/vendor/SFML-3.0.0/lib/sfml-window-s.lib deleted file mode 100644 index 66d2953..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-window-s.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/sfml-window.lib b/vendor/SFML-3.0.0/lib/sfml-window.lib deleted file mode 100644 index aef6d48..0000000 Binary files a/vendor/SFML-3.0.0/lib/sfml-window.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/lib/vorbisfile.lib b/vendor/SFML-3.0.0/lib/vorbisfile.lib deleted file mode 100644 index f631193..0000000 Binary files a/vendor/SFML-3.0.0/lib/vorbisfile.lib and /dev/null differ diff --git a/vendor/SFML-3.0.0/doc/SFML.tag b/vendor/SFML/doc/SFML.tag similarity index 100% rename from vendor/SFML-3.0.0/doc/SFML.tag rename to vendor/SFML/doc/SFML.tag diff --git a/vendor/SFML-3.0.0/doc/html/Angle_8hpp.html b/vendor/SFML/doc/html/Angle_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Angle_8hpp.html rename to vendor/SFML/doc/html/Angle_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Angle_8hpp_source.html b/vendor/SFML/doc/html/Angle_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Angle_8hpp_source.html rename to vendor/SFML/doc/html/Angle_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/AudioResource_8hpp.html b/vendor/SFML/doc/html/AudioResource_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/AudioResource_8hpp.html rename to vendor/SFML/doc/html/AudioResource_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/AudioResource_8hpp_source.html b/vendor/SFML/doc/html/AudioResource_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/AudioResource_8hpp_source.html rename to vendor/SFML/doc/html/AudioResource_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Audio_2Export_8hpp.html b/vendor/SFML/doc/html/Audio_2Export_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Audio_2Export_8hpp.html rename to vendor/SFML/doc/html/Audio_2Export_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Audio_2Export_8hpp_source.html b/vendor/SFML/doc/html/Audio_2Export_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Audio_2Export_8hpp_source.html rename to vendor/SFML/doc/html/Audio_2Export_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Audio_8hpp.html b/vendor/SFML/doc/html/Audio_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Audio_8hpp.html rename to vendor/SFML/doc/html/Audio_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Audio_8hpp_source.html b/vendor/SFML/doc/html/Audio_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Audio_8hpp_source.html rename to vendor/SFML/doc/html/Audio_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/BlendMode_8hpp.html b/vendor/SFML/doc/html/BlendMode_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/BlendMode_8hpp.html rename to vendor/SFML/doc/html/BlendMode_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/BlendMode_8hpp_source.html b/vendor/SFML/doc/html/BlendMode_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/BlendMode_8hpp_source.html rename to vendor/SFML/doc/html/BlendMode_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/CircleShape_8hpp.html b/vendor/SFML/doc/html/CircleShape_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/CircleShape_8hpp.html rename to vendor/SFML/doc/html/CircleShape_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/CircleShape_8hpp_source.html b/vendor/SFML/doc/html/CircleShape_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/CircleShape_8hpp_source.html rename to vendor/SFML/doc/html/CircleShape_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Clipboard_8hpp.html b/vendor/SFML/doc/html/Clipboard_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Clipboard_8hpp.html rename to vendor/SFML/doc/html/Clipboard_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Clipboard_8hpp_source.html b/vendor/SFML/doc/html/Clipboard_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Clipboard_8hpp_source.html rename to vendor/SFML/doc/html/Clipboard_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Clock_8hpp.html b/vendor/SFML/doc/html/Clock_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Clock_8hpp.html rename to vendor/SFML/doc/html/Clock_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Clock_8hpp_source.html b/vendor/SFML/doc/html/Clock_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Clock_8hpp_source.html rename to vendor/SFML/doc/html/Clock_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Color_8hpp.html b/vendor/SFML/doc/html/Color_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Color_8hpp.html rename to vendor/SFML/doc/html/Color_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Color_8hpp_source.html b/vendor/SFML/doc/html/Color_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Color_8hpp_source.html rename to vendor/SFML/doc/html/Color_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Config_8hpp.html b/vendor/SFML/doc/html/Config_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Config_8hpp.html rename to vendor/SFML/doc/html/Config_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Config_8hpp_source.html b/vendor/SFML/doc/html/Config_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Config_8hpp_source.html rename to vendor/SFML/doc/html/Config_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/ContextSettings_8hpp.html b/vendor/SFML/doc/html/ContextSettings_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/ContextSettings_8hpp.html rename to vendor/SFML/doc/html/ContextSettings_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/ContextSettings_8hpp_source.html b/vendor/SFML/doc/html/ContextSettings_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/ContextSettings_8hpp_source.html rename to vendor/SFML/doc/html/ContextSettings_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Context_8hpp.html b/vendor/SFML/doc/html/Context_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Context_8hpp.html rename to vendor/SFML/doc/html/Context_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Context_8hpp_source.html b/vendor/SFML/doc/html/Context_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Context_8hpp_source.html rename to vendor/SFML/doc/html/Context_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/ConvexShape_8hpp.html b/vendor/SFML/doc/html/ConvexShape_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/ConvexShape_8hpp.html rename to vendor/SFML/doc/html/ConvexShape_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/ConvexShape_8hpp_source.html b/vendor/SFML/doc/html/ConvexShape_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/ConvexShape_8hpp_source.html rename to vendor/SFML/doc/html/ConvexShape_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/CoordinateType_8hpp.html b/vendor/SFML/doc/html/CoordinateType_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/CoordinateType_8hpp.html rename to vendor/SFML/doc/html/CoordinateType_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/CoordinateType_8hpp_source.html b/vendor/SFML/doc/html/CoordinateType_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/CoordinateType_8hpp_source.html rename to vendor/SFML/doc/html/CoordinateType_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Cursor_8hpp.html b/vendor/SFML/doc/html/Cursor_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Cursor_8hpp.html rename to vendor/SFML/doc/html/Cursor_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Cursor_8hpp_source.html b/vendor/SFML/doc/html/Cursor_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Cursor_8hpp_source.html rename to vendor/SFML/doc/html/Cursor_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Drawable_8hpp.html b/vendor/SFML/doc/html/Drawable_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Drawable_8hpp.html rename to vendor/SFML/doc/html/Drawable_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Drawable_8hpp_source.html b/vendor/SFML/doc/html/Drawable_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Drawable_8hpp_source.html rename to vendor/SFML/doc/html/Drawable_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Err_8hpp.html b/vendor/SFML/doc/html/Err_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Err_8hpp.html rename to vendor/SFML/doc/html/Err_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Err_8hpp_source.html b/vendor/SFML/doc/html/Err_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Err_8hpp_source.html rename to vendor/SFML/doc/html/Err_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Event_8hpp.html b/vendor/SFML/doc/html/Event_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Event_8hpp.html rename to vendor/SFML/doc/html/Event_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Event_8hpp_source.html b/vendor/SFML/doc/html/Event_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Event_8hpp_source.html rename to vendor/SFML/doc/html/Event_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Exception_8hpp.html b/vendor/SFML/doc/html/Exception_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Exception_8hpp.html rename to vendor/SFML/doc/html/Exception_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Exception_8hpp_source.html b/vendor/SFML/doc/html/Exception_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Exception_8hpp_source.html rename to vendor/SFML/doc/html/Exception_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/FileInputStream_8hpp.html b/vendor/SFML/doc/html/FileInputStream_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/FileInputStream_8hpp.html rename to vendor/SFML/doc/html/FileInputStream_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/FileInputStream_8hpp_source.html b/vendor/SFML/doc/html/FileInputStream_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/FileInputStream_8hpp_source.html rename to vendor/SFML/doc/html/FileInputStream_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Font_8hpp.html b/vendor/SFML/doc/html/Font_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Font_8hpp.html rename to vendor/SFML/doc/html/Font_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Font_8hpp_source.html b/vendor/SFML/doc/html/Font_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Font_8hpp_source.html rename to vendor/SFML/doc/html/Font_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Ftp_8hpp.html b/vendor/SFML/doc/html/Ftp_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Ftp_8hpp.html rename to vendor/SFML/doc/html/Ftp_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Ftp_8hpp_source.html b/vendor/SFML/doc/html/Ftp_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Ftp_8hpp_source.html rename to vendor/SFML/doc/html/Ftp_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/GlResource_8hpp.html b/vendor/SFML/doc/html/GlResource_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/GlResource_8hpp.html rename to vendor/SFML/doc/html/GlResource_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/GlResource_8hpp_source.html b/vendor/SFML/doc/html/GlResource_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/GlResource_8hpp_source.html rename to vendor/SFML/doc/html/GlResource_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Glsl_8hpp.html b/vendor/SFML/doc/html/Glsl_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Glsl_8hpp.html rename to vendor/SFML/doc/html/Glsl_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Glsl_8hpp_source.html b/vendor/SFML/doc/html/Glsl_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Glsl_8hpp_source.html rename to vendor/SFML/doc/html/Glsl_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Glyph_8hpp.html b/vendor/SFML/doc/html/Glyph_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Glyph_8hpp.html rename to vendor/SFML/doc/html/Glyph_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Glyph_8hpp_source.html b/vendor/SFML/doc/html/Glyph_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Glyph_8hpp_source.html rename to vendor/SFML/doc/html/Glyph_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/GpuPreference_8hpp.html b/vendor/SFML/doc/html/GpuPreference_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/GpuPreference_8hpp.html rename to vendor/SFML/doc/html/GpuPreference_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/GpuPreference_8hpp_source.html b/vendor/SFML/doc/html/GpuPreference_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/GpuPreference_8hpp_source.html rename to vendor/SFML/doc/html/GpuPreference_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Graphics_2Export_8hpp.html b/vendor/SFML/doc/html/Graphics_2Export_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Graphics_2Export_8hpp.html rename to vendor/SFML/doc/html/Graphics_2Export_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Graphics_2Export_8hpp_source.html b/vendor/SFML/doc/html/Graphics_2Export_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Graphics_2Export_8hpp_source.html rename to vendor/SFML/doc/html/Graphics_2Export_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Graphics_8hpp.html b/vendor/SFML/doc/html/Graphics_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Graphics_8hpp.html rename to vendor/SFML/doc/html/Graphics_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Graphics_8hpp_source.html b/vendor/SFML/doc/html/Graphics_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Graphics_8hpp_source.html rename to vendor/SFML/doc/html/Graphics_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Http_8hpp.html b/vendor/SFML/doc/html/Http_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Http_8hpp.html rename to vendor/SFML/doc/html/Http_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Http_8hpp_source.html b/vendor/SFML/doc/html/Http_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Http_8hpp_source.html rename to vendor/SFML/doc/html/Http_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Image_8hpp.html b/vendor/SFML/doc/html/Image_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Image_8hpp.html rename to vendor/SFML/doc/html/Image_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Image_8hpp_source.html b/vendor/SFML/doc/html/Image_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Image_8hpp_source.html rename to vendor/SFML/doc/html/Image_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/InputSoundFile_8hpp.html b/vendor/SFML/doc/html/InputSoundFile_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/InputSoundFile_8hpp.html rename to vendor/SFML/doc/html/InputSoundFile_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/InputSoundFile_8hpp_source.html b/vendor/SFML/doc/html/InputSoundFile_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/InputSoundFile_8hpp_source.html rename to vendor/SFML/doc/html/InputSoundFile_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/InputStream_8hpp.html b/vendor/SFML/doc/html/InputStream_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/InputStream_8hpp.html rename to vendor/SFML/doc/html/InputStream_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/InputStream_8hpp_source.html b/vendor/SFML/doc/html/InputStream_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/InputStream_8hpp_source.html rename to vendor/SFML/doc/html/InputStream_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/IpAddress_8hpp.html b/vendor/SFML/doc/html/IpAddress_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/IpAddress_8hpp.html rename to vendor/SFML/doc/html/IpAddress_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/IpAddress_8hpp_source.html b/vendor/SFML/doc/html/IpAddress_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/IpAddress_8hpp_source.html rename to vendor/SFML/doc/html/IpAddress_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Joystick_8hpp.html b/vendor/SFML/doc/html/Joystick_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Joystick_8hpp.html rename to vendor/SFML/doc/html/Joystick_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Joystick_8hpp_source.html b/vendor/SFML/doc/html/Joystick_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Joystick_8hpp_source.html rename to vendor/SFML/doc/html/Joystick_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Keyboard_8hpp.html b/vendor/SFML/doc/html/Keyboard_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Keyboard_8hpp.html rename to vendor/SFML/doc/html/Keyboard_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Keyboard_8hpp_source.html b/vendor/SFML/doc/html/Keyboard_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Keyboard_8hpp_source.html rename to vendor/SFML/doc/html/Keyboard_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Listener_8hpp.html b/vendor/SFML/doc/html/Listener_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Listener_8hpp.html rename to vendor/SFML/doc/html/Listener_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Listener_8hpp_source.html b/vendor/SFML/doc/html/Listener_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Listener_8hpp_source.html rename to vendor/SFML/doc/html/Listener_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Main_8hpp.html b/vendor/SFML/doc/html/Main_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Main_8hpp.html rename to vendor/SFML/doc/html/Main_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Main_8hpp_source.html b/vendor/SFML/doc/html/Main_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Main_8hpp_source.html rename to vendor/SFML/doc/html/Main_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/MemoryInputStream_8hpp.html b/vendor/SFML/doc/html/MemoryInputStream_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/MemoryInputStream_8hpp.html rename to vendor/SFML/doc/html/MemoryInputStream_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/MemoryInputStream_8hpp_source.html b/vendor/SFML/doc/html/MemoryInputStream_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/MemoryInputStream_8hpp_source.html rename to vendor/SFML/doc/html/MemoryInputStream_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Mouse_8hpp.html b/vendor/SFML/doc/html/Mouse_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Mouse_8hpp.html rename to vendor/SFML/doc/html/Mouse_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Mouse_8hpp_source.html b/vendor/SFML/doc/html/Mouse_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Mouse_8hpp_source.html rename to vendor/SFML/doc/html/Mouse_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Music_8hpp.html b/vendor/SFML/doc/html/Music_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Music_8hpp.html rename to vendor/SFML/doc/html/Music_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Music_8hpp_source.html b/vendor/SFML/doc/html/Music_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Music_8hpp_source.html rename to vendor/SFML/doc/html/Music_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/NativeActivity_8hpp.html b/vendor/SFML/doc/html/NativeActivity_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/NativeActivity_8hpp.html rename to vendor/SFML/doc/html/NativeActivity_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/NativeActivity_8hpp_source.html b/vendor/SFML/doc/html/NativeActivity_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/NativeActivity_8hpp_source.html rename to vendor/SFML/doc/html/NativeActivity_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Network_2Export_8hpp.html b/vendor/SFML/doc/html/Network_2Export_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Network_2Export_8hpp.html rename to vendor/SFML/doc/html/Network_2Export_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Network_2Export_8hpp_source.html b/vendor/SFML/doc/html/Network_2Export_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Network_2Export_8hpp_source.html rename to vendor/SFML/doc/html/Network_2Export_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Network_8hpp.html b/vendor/SFML/doc/html/Network_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Network_8hpp.html rename to vendor/SFML/doc/html/Network_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Network_8hpp_source.html b/vendor/SFML/doc/html/Network_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Network_8hpp_source.html rename to vendor/SFML/doc/html/Network_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/OpenGL_8hpp.html b/vendor/SFML/doc/html/OpenGL_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/OpenGL_8hpp.html rename to vendor/SFML/doc/html/OpenGL_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/OpenGL_8hpp_source.html b/vendor/SFML/doc/html/OpenGL_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/OpenGL_8hpp_source.html rename to vendor/SFML/doc/html/OpenGL_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/OutputSoundFile_8hpp.html b/vendor/SFML/doc/html/OutputSoundFile_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/OutputSoundFile_8hpp.html rename to vendor/SFML/doc/html/OutputSoundFile_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/OutputSoundFile_8hpp_source.html b/vendor/SFML/doc/html/OutputSoundFile_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/OutputSoundFile_8hpp_source.html rename to vendor/SFML/doc/html/OutputSoundFile_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Packet_8hpp.html b/vendor/SFML/doc/html/Packet_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Packet_8hpp.html rename to vendor/SFML/doc/html/Packet_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Packet_8hpp_source.html b/vendor/SFML/doc/html/Packet_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Packet_8hpp_source.html rename to vendor/SFML/doc/html/Packet_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/PlaybackDevice_8hpp.html b/vendor/SFML/doc/html/PlaybackDevice_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/PlaybackDevice_8hpp.html rename to vendor/SFML/doc/html/PlaybackDevice_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/PlaybackDevice_8hpp_source.html b/vendor/SFML/doc/html/PlaybackDevice_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/PlaybackDevice_8hpp_source.html rename to vendor/SFML/doc/html/PlaybackDevice_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/PrimitiveType_8hpp.html b/vendor/SFML/doc/html/PrimitiveType_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/PrimitiveType_8hpp.html rename to vendor/SFML/doc/html/PrimitiveType_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/PrimitiveType_8hpp_source.html b/vendor/SFML/doc/html/PrimitiveType_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/PrimitiveType_8hpp_source.html rename to vendor/SFML/doc/html/PrimitiveType_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Rect_8hpp.html b/vendor/SFML/doc/html/Rect_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Rect_8hpp.html rename to vendor/SFML/doc/html/Rect_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Rect_8hpp_source.html b/vendor/SFML/doc/html/Rect_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Rect_8hpp_source.html rename to vendor/SFML/doc/html/Rect_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/RectangleShape_8hpp.html b/vendor/SFML/doc/html/RectangleShape_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RectangleShape_8hpp.html rename to vendor/SFML/doc/html/RectangleShape_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/RectangleShape_8hpp_source.html b/vendor/SFML/doc/html/RectangleShape_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RectangleShape_8hpp_source.html rename to vendor/SFML/doc/html/RectangleShape_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/RenderStates_8hpp.html b/vendor/SFML/doc/html/RenderStates_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RenderStates_8hpp.html rename to vendor/SFML/doc/html/RenderStates_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/RenderStates_8hpp_source.html b/vendor/SFML/doc/html/RenderStates_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RenderStates_8hpp_source.html rename to vendor/SFML/doc/html/RenderStates_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/RenderTarget_8hpp.html b/vendor/SFML/doc/html/RenderTarget_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RenderTarget_8hpp.html rename to vendor/SFML/doc/html/RenderTarget_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/RenderTarget_8hpp_source.html b/vendor/SFML/doc/html/RenderTarget_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RenderTarget_8hpp_source.html rename to vendor/SFML/doc/html/RenderTarget_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/RenderTexture_8hpp.html b/vendor/SFML/doc/html/RenderTexture_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RenderTexture_8hpp.html rename to vendor/SFML/doc/html/RenderTexture_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/RenderTexture_8hpp_source.html b/vendor/SFML/doc/html/RenderTexture_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RenderTexture_8hpp_source.html rename to vendor/SFML/doc/html/RenderTexture_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/RenderWindow_8hpp.html b/vendor/SFML/doc/html/RenderWindow_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RenderWindow_8hpp.html rename to vendor/SFML/doc/html/RenderWindow_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/RenderWindow_8hpp_source.html b/vendor/SFML/doc/html/RenderWindow_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/RenderWindow_8hpp_source.html rename to vendor/SFML/doc/html/RenderWindow_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Sensor_8hpp.html b/vendor/SFML/doc/html/Sensor_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Sensor_8hpp.html rename to vendor/SFML/doc/html/Sensor_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Sensor_8hpp_source.html b/vendor/SFML/doc/html/Sensor_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Sensor_8hpp_source.html rename to vendor/SFML/doc/html/Sensor_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Shader_8hpp.html b/vendor/SFML/doc/html/Shader_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Shader_8hpp.html rename to vendor/SFML/doc/html/Shader_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Shader_8hpp_source.html b/vendor/SFML/doc/html/Shader_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Shader_8hpp_source.html rename to vendor/SFML/doc/html/Shader_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Shape_8hpp.html b/vendor/SFML/doc/html/Shape_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Shape_8hpp.html rename to vendor/SFML/doc/html/Shape_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Shape_8hpp_source.html b/vendor/SFML/doc/html/Shape_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Shape_8hpp_source.html rename to vendor/SFML/doc/html/Shape_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Sleep_8hpp.html b/vendor/SFML/doc/html/Sleep_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Sleep_8hpp.html rename to vendor/SFML/doc/html/Sleep_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Sleep_8hpp_source.html b/vendor/SFML/doc/html/Sleep_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Sleep_8hpp_source.html rename to vendor/SFML/doc/html/Sleep_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SocketHandle_8hpp.html b/vendor/SFML/doc/html/SocketHandle_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SocketHandle_8hpp.html rename to vendor/SFML/doc/html/SocketHandle_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SocketHandle_8hpp_source.html b/vendor/SFML/doc/html/SocketHandle_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SocketHandle_8hpp_source.html rename to vendor/SFML/doc/html/SocketHandle_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SocketSelector_8hpp.html b/vendor/SFML/doc/html/SocketSelector_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SocketSelector_8hpp.html rename to vendor/SFML/doc/html/SocketSelector_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SocketSelector_8hpp_source.html b/vendor/SFML/doc/html/SocketSelector_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SocketSelector_8hpp_source.html rename to vendor/SFML/doc/html/SocketSelector_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Socket_8hpp.html b/vendor/SFML/doc/html/Socket_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Socket_8hpp.html rename to vendor/SFML/doc/html/Socket_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Socket_8hpp_source.html b/vendor/SFML/doc/html/Socket_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Socket_8hpp_source.html rename to vendor/SFML/doc/html/Socket_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundBufferRecorder_8hpp.html b/vendor/SFML/doc/html/SoundBufferRecorder_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundBufferRecorder_8hpp.html rename to vendor/SFML/doc/html/SoundBufferRecorder_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundBufferRecorder_8hpp_source.html b/vendor/SFML/doc/html/SoundBufferRecorder_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundBufferRecorder_8hpp_source.html rename to vendor/SFML/doc/html/SoundBufferRecorder_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundBuffer_8hpp.html b/vendor/SFML/doc/html/SoundBuffer_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundBuffer_8hpp.html rename to vendor/SFML/doc/html/SoundBuffer_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundBuffer_8hpp_source.html b/vendor/SFML/doc/html/SoundBuffer_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundBuffer_8hpp_source.html rename to vendor/SFML/doc/html/SoundBuffer_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundChannel_8hpp.html b/vendor/SFML/doc/html/SoundChannel_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundChannel_8hpp.html rename to vendor/SFML/doc/html/SoundChannel_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundChannel_8hpp_source.html b/vendor/SFML/doc/html/SoundChannel_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundChannel_8hpp_source.html rename to vendor/SFML/doc/html/SoundChannel_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundFileFactory_8hpp.html b/vendor/SFML/doc/html/SoundFileFactory_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundFileFactory_8hpp.html rename to vendor/SFML/doc/html/SoundFileFactory_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundFileFactory_8hpp_source.html b/vendor/SFML/doc/html/SoundFileFactory_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundFileFactory_8hpp_source.html rename to vendor/SFML/doc/html/SoundFileFactory_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundFileReader_8hpp.html b/vendor/SFML/doc/html/SoundFileReader_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundFileReader_8hpp.html rename to vendor/SFML/doc/html/SoundFileReader_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundFileReader_8hpp_source.html b/vendor/SFML/doc/html/SoundFileReader_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundFileReader_8hpp_source.html rename to vendor/SFML/doc/html/SoundFileReader_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundFileWriter_8hpp.html b/vendor/SFML/doc/html/SoundFileWriter_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundFileWriter_8hpp.html rename to vendor/SFML/doc/html/SoundFileWriter_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundFileWriter_8hpp_source.html b/vendor/SFML/doc/html/SoundFileWriter_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundFileWriter_8hpp_source.html rename to vendor/SFML/doc/html/SoundFileWriter_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundRecorder_8hpp.html b/vendor/SFML/doc/html/SoundRecorder_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundRecorder_8hpp.html rename to vendor/SFML/doc/html/SoundRecorder_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundRecorder_8hpp_source.html b/vendor/SFML/doc/html/SoundRecorder_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundRecorder_8hpp_source.html rename to vendor/SFML/doc/html/SoundRecorder_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundSource_8hpp.html b/vendor/SFML/doc/html/SoundSource_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundSource_8hpp.html rename to vendor/SFML/doc/html/SoundSource_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundSource_8hpp_source.html b/vendor/SFML/doc/html/SoundSource_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundSource_8hpp_source.html rename to vendor/SFML/doc/html/SoundSource_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundStream_8hpp.html b/vendor/SFML/doc/html/SoundStream_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundStream_8hpp.html rename to vendor/SFML/doc/html/SoundStream_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SoundStream_8hpp_source.html b/vendor/SFML/doc/html/SoundStream_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SoundStream_8hpp_source.html rename to vendor/SFML/doc/html/SoundStream_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Sound_8hpp.html b/vendor/SFML/doc/html/Sound_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Sound_8hpp.html rename to vendor/SFML/doc/html/Sound_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Sound_8hpp_source.html b/vendor/SFML/doc/html/Sound_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Sound_8hpp_source.html rename to vendor/SFML/doc/html/Sound_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Sprite_8hpp.html b/vendor/SFML/doc/html/Sprite_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Sprite_8hpp.html rename to vendor/SFML/doc/html/Sprite_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Sprite_8hpp_source.html b/vendor/SFML/doc/html/Sprite_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Sprite_8hpp_source.html rename to vendor/SFML/doc/html/Sprite_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/StencilMode_8hpp.html b/vendor/SFML/doc/html/StencilMode_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/StencilMode_8hpp.html rename to vendor/SFML/doc/html/StencilMode_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/StencilMode_8hpp_source.html b/vendor/SFML/doc/html/StencilMode_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/StencilMode_8hpp_source.html rename to vendor/SFML/doc/html/StencilMode_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/String_8hpp.html b/vendor/SFML/doc/html/String_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/String_8hpp.html rename to vendor/SFML/doc/html/String_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/String_8hpp_source.html b/vendor/SFML/doc/html/String_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/String_8hpp_source.html rename to vendor/SFML/doc/html/String_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/SuspendAwareClock_8hpp.html b/vendor/SFML/doc/html/SuspendAwareClock_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SuspendAwareClock_8hpp.html rename to vendor/SFML/doc/html/SuspendAwareClock_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/SuspendAwareClock_8hpp_source.html b/vendor/SFML/doc/html/SuspendAwareClock_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/SuspendAwareClock_8hpp_source.html rename to vendor/SFML/doc/html/SuspendAwareClock_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/System_2Export_8hpp.html b/vendor/SFML/doc/html/System_2Export_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/System_2Export_8hpp.html rename to vendor/SFML/doc/html/System_2Export_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/System_2Export_8hpp_source.html b/vendor/SFML/doc/html/System_2Export_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/System_2Export_8hpp_source.html rename to vendor/SFML/doc/html/System_2Export_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/System_8hpp.html b/vendor/SFML/doc/html/System_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/System_8hpp.html rename to vendor/SFML/doc/html/System_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/System_8hpp_source.html b/vendor/SFML/doc/html/System_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/System_8hpp_source.html rename to vendor/SFML/doc/html/System_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/TcpListener_8hpp.html b/vendor/SFML/doc/html/TcpListener_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/TcpListener_8hpp.html rename to vendor/SFML/doc/html/TcpListener_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/TcpListener_8hpp_source.html b/vendor/SFML/doc/html/TcpListener_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/TcpListener_8hpp_source.html rename to vendor/SFML/doc/html/TcpListener_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/TcpSocket_8hpp.html b/vendor/SFML/doc/html/TcpSocket_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/TcpSocket_8hpp.html rename to vendor/SFML/doc/html/TcpSocket_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/TcpSocket_8hpp_source.html b/vendor/SFML/doc/html/TcpSocket_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/TcpSocket_8hpp_source.html rename to vendor/SFML/doc/html/TcpSocket_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Text_8hpp.html b/vendor/SFML/doc/html/Text_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Text_8hpp.html rename to vendor/SFML/doc/html/Text_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Text_8hpp_source.html b/vendor/SFML/doc/html/Text_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Text_8hpp_source.html rename to vendor/SFML/doc/html/Text_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Texture_8hpp.html b/vendor/SFML/doc/html/Texture_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Texture_8hpp.html rename to vendor/SFML/doc/html/Texture_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Texture_8hpp_source.html b/vendor/SFML/doc/html/Texture_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Texture_8hpp_source.html rename to vendor/SFML/doc/html/Texture_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Time_8hpp.html b/vendor/SFML/doc/html/Time_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Time_8hpp.html rename to vendor/SFML/doc/html/Time_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Time_8hpp_source.html b/vendor/SFML/doc/html/Time_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Time_8hpp_source.html rename to vendor/SFML/doc/html/Time_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Touch_8hpp.html b/vendor/SFML/doc/html/Touch_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Touch_8hpp.html rename to vendor/SFML/doc/html/Touch_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Touch_8hpp_source.html b/vendor/SFML/doc/html/Touch_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Touch_8hpp_source.html rename to vendor/SFML/doc/html/Touch_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Transform_8hpp.html b/vendor/SFML/doc/html/Transform_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Transform_8hpp.html rename to vendor/SFML/doc/html/Transform_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Transform_8hpp_source.html b/vendor/SFML/doc/html/Transform_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Transform_8hpp_source.html rename to vendor/SFML/doc/html/Transform_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Transformable_8hpp.html b/vendor/SFML/doc/html/Transformable_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Transformable_8hpp.html rename to vendor/SFML/doc/html/Transformable_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Transformable_8hpp_source.html b/vendor/SFML/doc/html/Transformable_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Transformable_8hpp_source.html rename to vendor/SFML/doc/html/Transformable_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/UdpSocket_8hpp.html b/vendor/SFML/doc/html/UdpSocket_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/UdpSocket_8hpp.html rename to vendor/SFML/doc/html/UdpSocket_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/UdpSocket_8hpp_source.html b/vendor/SFML/doc/html/UdpSocket_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/UdpSocket_8hpp_source.html rename to vendor/SFML/doc/html/UdpSocket_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Utf_8hpp.html b/vendor/SFML/doc/html/Utf_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Utf_8hpp.html rename to vendor/SFML/doc/html/Utf_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Utf_8hpp_source.html b/vendor/SFML/doc/html/Utf_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Utf_8hpp_source.html rename to vendor/SFML/doc/html/Utf_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Vector2_8hpp.html b/vendor/SFML/doc/html/Vector2_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Vector2_8hpp.html rename to vendor/SFML/doc/html/Vector2_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Vector2_8hpp_source.html b/vendor/SFML/doc/html/Vector2_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Vector2_8hpp_source.html rename to vendor/SFML/doc/html/Vector2_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Vector3_8hpp.html b/vendor/SFML/doc/html/Vector3_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Vector3_8hpp.html rename to vendor/SFML/doc/html/Vector3_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Vector3_8hpp_source.html b/vendor/SFML/doc/html/Vector3_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Vector3_8hpp_source.html rename to vendor/SFML/doc/html/Vector3_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/VertexArray_8hpp.html b/vendor/SFML/doc/html/VertexArray_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/VertexArray_8hpp.html rename to vendor/SFML/doc/html/VertexArray_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/VertexArray_8hpp_source.html b/vendor/SFML/doc/html/VertexArray_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/VertexArray_8hpp_source.html rename to vendor/SFML/doc/html/VertexArray_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/VertexBuffer_8hpp.html b/vendor/SFML/doc/html/VertexBuffer_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/VertexBuffer_8hpp.html rename to vendor/SFML/doc/html/VertexBuffer_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/VertexBuffer_8hpp_source.html b/vendor/SFML/doc/html/VertexBuffer_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/VertexBuffer_8hpp_source.html rename to vendor/SFML/doc/html/VertexBuffer_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Vertex_8hpp.html b/vendor/SFML/doc/html/Vertex_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Vertex_8hpp.html rename to vendor/SFML/doc/html/Vertex_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Vertex_8hpp_source.html b/vendor/SFML/doc/html/Vertex_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Vertex_8hpp_source.html rename to vendor/SFML/doc/html/Vertex_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/VideoMode_8hpp.html b/vendor/SFML/doc/html/VideoMode_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/VideoMode_8hpp.html rename to vendor/SFML/doc/html/VideoMode_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/VideoMode_8hpp_source.html b/vendor/SFML/doc/html/VideoMode_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/VideoMode_8hpp_source.html rename to vendor/SFML/doc/html/VideoMode_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/View_8hpp.html b/vendor/SFML/doc/html/View_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/View_8hpp.html rename to vendor/SFML/doc/html/View_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/View_8hpp_source.html b/vendor/SFML/doc/html/View_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/View_8hpp_source.html rename to vendor/SFML/doc/html/View_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Vulkan_8hpp.html b/vendor/SFML/doc/html/Vulkan_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Vulkan_8hpp.html rename to vendor/SFML/doc/html/Vulkan_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Vulkan_8hpp_source.html b/vendor/SFML/doc/html/Vulkan_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Vulkan_8hpp_source.html rename to vendor/SFML/doc/html/Vulkan_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/WindowBase_8hpp.html b/vendor/SFML/doc/html/WindowBase_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/WindowBase_8hpp.html rename to vendor/SFML/doc/html/WindowBase_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/WindowBase_8hpp_source.html b/vendor/SFML/doc/html/WindowBase_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/WindowBase_8hpp_source.html rename to vendor/SFML/doc/html/WindowBase_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/WindowEnums_8hpp.html b/vendor/SFML/doc/html/WindowEnums_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/WindowEnums_8hpp.html rename to vendor/SFML/doc/html/WindowEnums_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/WindowEnums_8hpp_source.html b/vendor/SFML/doc/html/WindowEnums_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/WindowEnums_8hpp_source.html rename to vendor/SFML/doc/html/WindowEnums_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/WindowHandle_8hpp.html b/vendor/SFML/doc/html/WindowHandle_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/WindowHandle_8hpp.html rename to vendor/SFML/doc/html/WindowHandle_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/WindowHandle_8hpp_source.html b/vendor/SFML/doc/html/WindowHandle_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/WindowHandle_8hpp_source.html rename to vendor/SFML/doc/html/WindowHandle_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Window_2Export_8hpp.html b/vendor/SFML/doc/html/Window_2Export_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Window_2Export_8hpp.html rename to vendor/SFML/doc/html/Window_2Export_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Window_2Export_8hpp_source.html b/vendor/SFML/doc/html/Window_2Export_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Window_2Export_8hpp_source.html rename to vendor/SFML/doc/html/Window_2Export_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Window_2Window_8hpp.html b/vendor/SFML/doc/html/Window_2Window_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Window_2Window_8hpp.html rename to vendor/SFML/doc/html/Window_2Window_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Window_2Window_8hpp_source.html b/vendor/SFML/doc/html/Window_2Window_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Window_2Window_8hpp_source.html rename to vendor/SFML/doc/html/Window_2Window_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/Window_8hpp.html b/vendor/SFML/doc/html/Window_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Window_8hpp.html rename to vendor/SFML/doc/html/Window_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/Window_8hpp_source.html b/vendor/SFML/doc/html/Window_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/Window_8hpp_source.html rename to vendor/SFML/doc/html/Window_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/annotated.html b/vendor/SFML/doc/html/annotated.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/annotated.html rename to vendor/SFML/doc/html/annotated.html diff --git a/vendor/SFML-3.0.0/doc/html/bc_s.png b/vendor/SFML/doc/html/bc_s.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/bc_s.png rename to vendor/SFML/doc/html/bc_s.png diff --git a/vendor/SFML-3.0.0/doc/html/bc_sd.png b/vendor/SFML/doc/html/bc_sd.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/bc_sd.png rename to vendor/SFML/doc/html/bc_sd.png diff --git a/vendor/SFML-3.0.0/doc/html/classes.html b/vendor/SFML/doc/html/classes.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classes.html rename to vendor/SFML/doc/html/classes.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Angle-members.html b/vendor/SFML/doc/html/classsf_1_1Angle-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Angle-members.html rename to vendor/SFML/doc/html/classsf_1_1Angle-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Angle.html b/vendor/SFML/doc/html/classsf_1_1Angle.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Angle.html rename to vendor/SFML/doc/html/classsf_1_1Angle.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1AudioResource-members.html b/vendor/SFML/doc/html/classsf_1_1AudioResource-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1AudioResource-members.html rename to vendor/SFML/doc/html/classsf_1_1AudioResource-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1AudioResource.html b/vendor/SFML/doc/html/classsf_1_1AudioResource.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1AudioResource.html rename to vendor/SFML/doc/html/classsf_1_1AudioResource.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1AudioResource.png b/vendor/SFML/doc/html/classsf_1_1AudioResource.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1AudioResource.png rename to vendor/SFML/doc/html/classsf_1_1AudioResource.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1CircleShape-members.html b/vendor/SFML/doc/html/classsf_1_1CircleShape-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1CircleShape-members.html rename to vendor/SFML/doc/html/classsf_1_1CircleShape-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1CircleShape.html b/vendor/SFML/doc/html/classsf_1_1CircleShape.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1CircleShape.html rename to vendor/SFML/doc/html/classsf_1_1CircleShape.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1CircleShape.png b/vendor/SFML/doc/html/classsf_1_1CircleShape.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1CircleShape.png rename to vendor/SFML/doc/html/classsf_1_1CircleShape.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Clock-members.html b/vendor/SFML/doc/html/classsf_1_1Clock-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Clock-members.html rename to vendor/SFML/doc/html/classsf_1_1Clock-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Clock.html b/vendor/SFML/doc/html/classsf_1_1Clock.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Clock.html rename to vendor/SFML/doc/html/classsf_1_1Clock.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Color-members.html b/vendor/SFML/doc/html/classsf_1_1Color-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Color-members.html rename to vendor/SFML/doc/html/classsf_1_1Color-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Color.html b/vendor/SFML/doc/html/classsf_1_1Color.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Color.html rename to vendor/SFML/doc/html/classsf_1_1Color.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Context-members.html b/vendor/SFML/doc/html/classsf_1_1Context-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Context-members.html rename to vendor/SFML/doc/html/classsf_1_1Context-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Context.html b/vendor/SFML/doc/html/classsf_1_1Context.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Context.html rename to vendor/SFML/doc/html/classsf_1_1Context.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Context.png b/vendor/SFML/doc/html/classsf_1_1Context.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Context.png rename to vendor/SFML/doc/html/classsf_1_1Context.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1ConvexShape-members.html b/vendor/SFML/doc/html/classsf_1_1ConvexShape-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1ConvexShape-members.html rename to vendor/SFML/doc/html/classsf_1_1ConvexShape-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1ConvexShape.html b/vendor/SFML/doc/html/classsf_1_1ConvexShape.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1ConvexShape.html rename to vendor/SFML/doc/html/classsf_1_1ConvexShape.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1ConvexShape.png b/vendor/SFML/doc/html/classsf_1_1ConvexShape.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1ConvexShape.png rename to vendor/SFML/doc/html/classsf_1_1ConvexShape.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Cursor-members.html b/vendor/SFML/doc/html/classsf_1_1Cursor-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Cursor-members.html rename to vendor/SFML/doc/html/classsf_1_1Cursor-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Cursor.html b/vendor/SFML/doc/html/classsf_1_1Cursor.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Cursor.html rename to vendor/SFML/doc/html/classsf_1_1Cursor.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Drawable-members.html b/vendor/SFML/doc/html/classsf_1_1Drawable-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Drawable-members.html rename to vendor/SFML/doc/html/classsf_1_1Drawable-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Drawable.html b/vendor/SFML/doc/html/classsf_1_1Drawable.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Drawable.html rename to vendor/SFML/doc/html/classsf_1_1Drawable.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Drawable.png b/vendor/SFML/doc/html/classsf_1_1Drawable.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Drawable.png rename to vendor/SFML/doc/html/classsf_1_1Drawable.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Event-members.html b/vendor/SFML/doc/html/classsf_1_1Event-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Event-members.html rename to vendor/SFML/doc/html/classsf_1_1Event-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Event.html b/vendor/SFML/doc/html/classsf_1_1Event.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Event.html rename to vendor/SFML/doc/html/classsf_1_1Event.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Exception.html b/vendor/SFML/doc/html/classsf_1_1Exception.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Exception.html rename to vendor/SFML/doc/html/classsf_1_1Exception.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Exception.png b/vendor/SFML/doc/html/classsf_1_1Exception.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Exception.png rename to vendor/SFML/doc/html/classsf_1_1Exception.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1FileInputStream-members.html b/vendor/SFML/doc/html/classsf_1_1FileInputStream-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1FileInputStream-members.html rename to vendor/SFML/doc/html/classsf_1_1FileInputStream-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1FileInputStream.html b/vendor/SFML/doc/html/classsf_1_1FileInputStream.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1FileInputStream.html rename to vendor/SFML/doc/html/classsf_1_1FileInputStream.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1FileInputStream.png b/vendor/SFML/doc/html/classsf_1_1FileInputStream.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1FileInputStream.png rename to vendor/SFML/doc/html/classsf_1_1FileInputStream.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Font-members.html b/vendor/SFML/doc/html/classsf_1_1Font-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Font-members.html rename to vendor/SFML/doc/html/classsf_1_1Font-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Font.html b/vendor/SFML/doc/html/classsf_1_1Font.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Font.html rename to vendor/SFML/doc/html/classsf_1_1Font.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp-members.html b/vendor/SFML/doc/html/classsf_1_1Ftp-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp-members.html rename to vendor/SFML/doc/html/classsf_1_1Ftp-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp.html b/vendor/SFML/doc/html/classsf_1_1Ftp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp.html rename to vendor/SFML/doc/html/classsf_1_1Ftp.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1DirectoryResponse-members.html b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1DirectoryResponse-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1DirectoryResponse-members.html rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1DirectoryResponse-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1DirectoryResponse.html b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1DirectoryResponse.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1DirectoryResponse.html rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1DirectoryResponse.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1DirectoryResponse.png b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1DirectoryResponse.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1DirectoryResponse.png rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1DirectoryResponse.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1ListingResponse-members.html b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1ListingResponse-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1ListingResponse-members.html rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1ListingResponse-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1ListingResponse.html b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1ListingResponse.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1ListingResponse.html rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1ListingResponse.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1ListingResponse.png b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1ListingResponse.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1ListingResponse.png rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1ListingResponse.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1Response-members.html b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1Response-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1Response-members.html rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1Response-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1Response.html b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1Response.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1Response.html rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1Response.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1Response.png b/vendor/SFML/doc/html/classsf_1_1Ftp_1_1Response.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Ftp_1_1Response.png rename to vendor/SFML/doc/html/classsf_1_1Ftp_1_1Response.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource-members.html b/vendor/SFML/doc/html/classsf_1_1GlResource-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource-members.html rename to vendor/SFML/doc/html/classsf_1_1GlResource-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource.html b/vendor/SFML/doc/html/classsf_1_1GlResource.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource.html rename to vendor/SFML/doc/html/classsf_1_1GlResource.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource.png b/vendor/SFML/doc/html/classsf_1_1GlResource.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource.png rename to vendor/SFML/doc/html/classsf_1_1GlResource.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource_1_1TransientContextLock-members.html b/vendor/SFML/doc/html/classsf_1_1GlResource_1_1TransientContextLock-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource_1_1TransientContextLock-members.html rename to vendor/SFML/doc/html/classsf_1_1GlResource_1_1TransientContextLock-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource_1_1TransientContextLock.html b/vendor/SFML/doc/html/classsf_1_1GlResource_1_1TransientContextLock.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1GlResource_1_1TransientContextLock.html rename to vendor/SFML/doc/html/classsf_1_1GlResource_1_1TransientContextLock.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Http-members.html b/vendor/SFML/doc/html/classsf_1_1Http-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Http-members.html rename to vendor/SFML/doc/html/classsf_1_1Http-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Http.html b/vendor/SFML/doc/html/classsf_1_1Http.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Http.html rename to vendor/SFML/doc/html/classsf_1_1Http.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Http_1_1Request-members.html b/vendor/SFML/doc/html/classsf_1_1Http_1_1Request-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Http_1_1Request-members.html rename to vendor/SFML/doc/html/classsf_1_1Http_1_1Request-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Http_1_1Request.html b/vendor/SFML/doc/html/classsf_1_1Http_1_1Request.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Http_1_1Request.html rename to vendor/SFML/doc/html/classsf_1_1Http_1_1Request.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Http_1_1Response-members.html b/vendor/SFML/doc/html/classsf_1_1Http_1_1Response-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Http_1_1Response-members.html rename to vendor/SFML/doc/html/classsf_1_1Http_1_1Response-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Http_1_1Response.html b/vendor/SFML/doc/html/classsf_1_1Http_1_1Response.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Http_1_1Response.html rename to vendor/SFML/doc/html/classsf_1_1Http_1_1Response.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Image-members.html b/vendor/SFML/doc/html/classsf_1_1Image-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Image-members.html rename to vendor/SFML/doc/html/classsf_1_1Image-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Image.html b/vendor/SFML/doc/html/classsf_1_1Image.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Image.html rename to vendor/SFML/doc/html/classsf_1_1Image.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1InputSoundFile-members.html b/vendor/SFML/doc/html/classsf_1_1InputSoundFile-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1InputSoundFile-members.html rename to vendor/SFML/doc/html/classsf_1_1InputSoundFile-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1InputSoundFile.html b/vendor/SFML/doc/html/classsf_1_1InputSoundFile.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1InputSoundFile.html rename to vendor/SFML/doc/html/classsf_1_1InputSoundFile.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1InputStream-members.html b/vendor/SFML/doc/html/classsf_1_1InputStream-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1InputStream-members.html rename to vendor/SFML/doc/html/classsf_1_1InputStream-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1InputStream.html b/vendor/SFML/doc/html/classsf_1_1InputStream.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1InputStream.html rename to vendor/SFML/doc/html/classsf_1_1InputStream.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1InputStream.png b/vendor/SFML/doc/html/classsf_1_1InputStream.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1InputStream.png rename to vendor/SFML/doc/html/classsf_1_1InputStream.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1IpAddress-members.html b/vendor/SFML/doc/html/classsf_1_1IpAddress-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1IpAddress-members.html rename to vendor/SFML/doc/html/classsf_1_1IpAddress-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1IpAddress.html b/vendor/SFML/doc/html/classsf_1_1IpAddress.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1IpAddress.html rename to vendor/SFML/doc/html/classsf_1_1IpAddress.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1MemoryInputStream-members.html b/vendor/SFML/doc/html/classsf_1_1MemoryInputStream-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1MemoryInputStream-members.html rename to vendor/SFML/doc/html/classsf_1_1MemoryInputStream-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1MemoryInputStream.html b/vendor/SFML/doc/html/classsf_1_1MemoryInputStream.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1MemoryInputStream.html rename to vendor/SFML/doc/html/classsf_1_1MemoryInputStream.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1MemoryInputStream.png b/vendor/SFML/doc/html/classsf_1_1MemoryInputStream.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1MemoryInputStream.png rename to vendor/SFML/doc/html/classsf_1_1MemoryInputStream.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Music-members.html b/vendor/SFML/doc/html/classsf_1_1Music-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Music-members.html rename to vendor/SFML/doc/html/classsf_1_1Music-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Music.html b/vendor/SFML/doc/html/classsf_1_1Music.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Music.html rename to vendor/SFML/doc/html/classsf_1_1Music.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Music.png b/vendor/SFML/doc/html/classsf_1_1Music.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Music.png rename to vendor/SFML/doc/html/classsf_1_1Music.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1OutputSoundFile-members.html b/vendor/SFML/doc/html/classsf_1_1OutputSoundFile-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1OutputSoundFile-members.html rename to vendor/SFML/doc/html/classsf_1_1OutputSoundFile-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1OutputSoundFile.html b/vendor/SFML/doc/html/classsf_1_1OutputSoundFile.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1OutputSoundFile.html rename to vendor/SFML/doc/html/classsf_1_1OutputSoundFile.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Packet-members.html b/vendor/SFML/doc/html/classsf_1_1Packet-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Packet-members.html rename to vendor/SFML/doc/html/classsf_1_1Packet-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Packet.html b/vendor/SFML/doc/html/classsf_1_1Packet.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Packet.html rename to vendor/SFML/doc/html/classsf_1_1Packet.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Rect-members.html b/vendor/SFML/doc/html/classsf_1_1Rect-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Rect-members.html rename to vendor/SFML/doc/html/classsf_1_1Rect-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Rect.html b/vendor/SFML/doc/html/classsf_1_1Rect.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Rect.html rename to vendor/SFML/doc/html/classsf_1_1Rect.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RectangleShape-members.html b/vendor/SFML/doc/html/classsf_1_1RectangleShape-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RectangleShape-members.html rename to vendor/SFML/doc/html/classsf_1_1RectangleShape-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RectangleShape.html b/vendor/SFML/doc/html/classsf_1_1RectangleShape.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RectangleShape.html rename to vendor/SFML/doc/html/classsf_1_1RectangleShape.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RectangleShape.png b/vendor/SFML/doc/html/classsf_1_1RectangleShape.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RectangleShape.png rename to vendor/SFML/doc/html/classsf_1_1RectangleShape.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTarget-members.html b/vendor/SFML/doc/html/classsf_1_1RenderTarget-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTarget-members.html rename to vendor/SFML/doc/html/classsf_1_1RenderTarget-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTarget.html b/vendor/SFML/doc/html/classsf_1_1RenderTarget.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTarget.html rename to vendor/SFML/doc/html/classsf_1_1RenderTarget.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTarget.png b/vendor/SFML/doc/html/classsf_1_1RenderTarget.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTarget.png rename to vendor/SFML/doc/html/classsf_1_1RenderTarget.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTexture-members.html b/vendor/SFML/doc/html/classsf_1_1RenderTexture-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTexture-members.html rename to vendor/SFML/doc/html/classsf_1_1RenderTexture-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTexture.html b/vendor/SFML/doc/html/classsf_1_1RenderTexture.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTexture.html rename to vendor/SFML/doc/html/classsf_1_1RenderTexture.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTexture.png b/vendor/SFML/doc/html/classsf_1_1RenderTexture.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderTexture.png rename to vendor/SFML/doc/html/classsf_1_1RenderTexture.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderWindow-members.html b/vendor/SFML/doc/html/classsf_1_1RenderWindow-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderWindow-members.html rename to vendor/SFML/doc/html/classsf_1_1RenderWindow-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderWindow.html b/vendor/SFML/doc/html/classsf_1_1RenderWindow.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderWindow.html rename to vendor/SFML/doc/html/classsf_1_1RenderWindow.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1RenderWindow.png b/vendor/SFML/doc/html/classsf_1_1RenderWindow.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1RenderWindow.png rename to vendor/SFML/doc/html/classsf_1_1RenderWindow.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Shader-members.html b/vendor/SFML/doc/html/classsf_1_1Shader-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Shader-members.html rename to vendor/SFML/doc/html/classsf_1_1Shader-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Shader.html b/vendor/SFML/doc/html/classsf_1_1Shader.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Shader.html rename to vendor/SFML/doc/html/classsf_1_1Shader.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Shader.png b/vendor/SFML/doc/html/classsf_1_1Shader.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Shader.png rename to vendor/SFML/doc/html/classsf_1_1Shader.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Shape-members.html b/vendor/SFML/doc/html/classsf_1_1Shape-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Shape-members.html rename to vendor/SFML/doc/html/classsf_1_1Shape-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Shape.html b/vendor/SFML/doc/html/classsf_1_1Shape.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Shape.html rename to vendor/SFML/doc/html/classsf_1_1Shape.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Shape.png b/vendor/SFML/doc/html/classsf_1_1Shape.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Shape.png rename to vendor/SFML/doc/html/classsf_1_1Shape.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Socket-members.html b/vendor/SFML/doc/html/classsf_1_1Socket-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Socket-members.html rename to vendor/SFML/doc/html/classsf_1_1Socket-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Socket.html b/vendor/SFML/doc/html/classsf_1_1Socket.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Socket.html rename to vendor/SFML/doc/html/classsf_1_1Socket.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Socket.png b/vendor/SFML/doc/html/classsf_1_1Socket.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Socket.png rename to vendor/SFML/doc/html/classsf_1_1Socket.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SocketSelector-members.html b/vendor/SFML/doc/html/classsf_1_1SocketSelector-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SocketSelector-members.html rename to vendor/SFML/doc/html/classsf_1_1SocketSelector-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SocketSelector.html b/vendor/SFML/doc/html/classsf_1_1SocketSelector.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SocketSelector.html rename to vendor/SFML/doc/html/classsf_1_1SocketSelector.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Sound-members.html b/vendor/SFML/doc/html/classsf_1_1Sound-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Sound-members.html rename to vendor/SFML/doc/html/classsf_1_1Sound-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Sound.html b/vendor/SFML/doc/html/classsf_1_1Sound.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Sound.html rename to vendor/SFML/doc/html/classsf_1_1Sound.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Sound.png b/vendor/SFML/doc/html/classsf_1_1Sound.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Sound.png rename to vendor/SFML/doc/html/classsf_1_1Sound.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBuffer-members.html b/vendor/SFML/doc/html/classsf_1_1SoundBuffer-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBuffer-members.html rename to vendor/SFML/doc/html/classsf_1_1SoundBuffer-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBuffer.html b/vendor/SFML/doc/html/classsf_1_1SoundBuffer.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBuffer.html rename to vendor/SFML/doc/html/classsf_1_1SoundBuffer.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBufferRecorder-members.html b/vendor/SFML/doc/html/classsf_1_1SoundBufferRecorder-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBufferRecorder-members.html rename to vendor/SFML/doc/html/classsf_1_1SoundBufferRecorder-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBufferRecorder.html b/vendor/SFML/doc/html/classsf_1_1SoundBufferRecorder.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBufferRecorder.html rename to vendor/SFML/doc/html/classsf_1_1SoundBufferRecorder.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBufferRecorder.png b/vendor/SFML/doc/html/classsf_1_1SoundBufferRecorder.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundBufferRecorder.png rename to vendor/SFML/doc/html/classsf_1_1SoundBufferRecorder.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileFactory-members.html b/vendor/SFML/doc/html/classsf_1_1SoundFileFactory-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileFactory-members.html rename to vendor/SFML/doc/html/classsf_1_1SoundFileFactory-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileFactory.html b/vendor/SFML/doc/html/classsf_1_1SoundFileFactory.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileFactory.html rename to vendor/SFML/doc/html/classsf_1_1SoundFileFactory.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileReader-members.html b/vendor/SFML/doc/html/classsf_1_1SoundFileReader-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileReader-members.html rename to vendor/SFML/doc/html/classsf_1_1SoundFileReader-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileReader.html b/vendor/SFML/doc/html/classsf_1_1SoundFileReader.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileReader.html rename to vendor/SFML/doc/html/classsf_1_1SoundFileReader.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileWriter-members.html b/vendor/SFML/doc/html/classsf_1_1SoundFileWriter-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileWriter-members.html rename to vendor/SFML/doc/html/classsf_1_1SoundFileWriter-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileWriter.html b/vendor/SFML/doc/html/classsf_1_1SoundFileWriter.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundFileWriter.html rename to vendor/SFML/doc/html/classsf_1_1SoundFileWriter.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundRecorder-members.html b/vendor/SFML/doc/html/classsf_1_1SoundRecorder-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundRecorder-members.html rename to vendor/SFML/doc/html/classsf_1_1SoundRecorder-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundRecorder.html b/vendor/SFML/doc/html/classsf_1_1SoundRecorder.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundRecorder.html rename to vendor/SFML/doc/html/classsf_1_1SoundRecorder.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundRecorder.png b/vendor/SFML/doc/html/classsf_1_1SoundRecorder.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundRecorder.png rename to vendor/SFML/doc/html/classsf_1_1SoundRecorder.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundSource-members.html b/vendor/SFML/doc/html/classsf_1_1SoundSource-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundSource-members.html rename to vendor/SFML/doc/html/classsf_1_1SoundSource-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundSource.html b/vendor/SFML/doc/html/classsf_1_1SoundSource.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundSource.html rename to vendor/SFML/doc/html/classsf_1_1SoundSource.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundSource.png b/vendor/SFML/doc/html/classsf_1_1SoundSource.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundSource.png rename to vendor/SFML/doc/html/classsf_1_1SoundSource.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundStream-members.html b/vendor/SFML/doc/html/classsf_1_1SoundStream-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundStream-members.html rename to vendor/SFML/doc/html/classsf_1_1SoundStream-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundStream.html b/vendor/SFML/doc/html/classsf_1_1SoundStream.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundStream.html rename to vendor/SFML/doc/html/classsf_1_1SoundStream.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1SoundStream.png b/vendor/SFML/doc/html/classsf_1_1SoundStream.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1SoundStream.png rename to vendor/SFML/doc/html/classsf_1_1SoundStream.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Sprite-members.html b/vendor/SFML/doc/html/classsf_1_1Sprite-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Sprite-members.html rename to vendor/SFML/doc/html/classsf_1_1Sprite-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Sprite.html b/vendor/SFML/doc/html/classsf_1_1Sprite.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Sprite.html rename to vendor/SFML/doc/html/classsf_1_1Sprite.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Sprite.png b/vendor/SFML/doc/html/classsf_1_1Sprite.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Sprite.png rename to vendor/SFML/doc/html/classsf_1_1Sprite.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1String-members.html b/vendor/SFML/doc/html/classsf_1_1String-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1String-members.html rename to vendor/SFML/doc/html/classsf_1_1String-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1String.html b/vendor/SFML/doc/html/classsf_1_1String.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1String.html rename to vendor/SFML/doc/html/classsf_1_1String.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1TcpListener-members.html b/vendor/SFML/doc/html/classsf_1_1TcpListener-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1TcpListener-members.html rename to vendor/SFML/doc/html/classsf_1_1TcpListener-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1TcpListener.html b/vendor/SFML/doc/html/classsf_1_1TcpListener.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1TcpListener.html rename to vendor/SFML/doc/html/classsf_1_1TcpListener.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1TcpListener.png b/vendor/SFML/doc/html/classsf_1_1TcpListener.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1TcpListener.png rename to vendor/SFML/doc/html/classsf_1_1TcpListener.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1TcpSocket-members.html b/vendor/SFML/doc/html/classsf_1_1TcpSocket-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1TcpSocket-members.html rename to vendor/SFML/doc/html/classsf_1_1TcpSocket-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1TcpSocket.html b/vendor/SFML/doc/html/classsf_1_1TcpSocket.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1TcpSocket.html rename to vendor/SFML/doc/html/classsf_1_1TcpSocket.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1TcpSocket.png b/vendor/SFML/doc/html/classsf_1_1TcpSocket.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1TcpSocket.png rename to vendor/SFML/doc/html/classsf_1_1TcpSocket.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Text-members.html b/vendor/SFML/doc/html/classsf_1_1Text-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Text-members.html rename to vendor/SFML/doc/html/classsf_1_1Text-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Text.html b/vendor/SFML/doc/html/classsf_1_1Text.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Text.html rename to vendor/SFML/doc/html/classsf_1_1Text.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Text.png b/vendor/SFML/doc/html/classsf_1_1Text.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Text.png rename to vendor/SFML/doc/html/classsf_1_1Text.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Texture-members.html b/vendor/SFML/doc/html/classsf_1_1Texture-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Texture-members.html rename to vendor/SFML/doc/html/classsf_1_1Texture-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Texture.html b/vendor/SFML/doc/html/classsf_1_1Texture.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Texture.html rename to vendor/SFML/doc/html/classsf_1_1Texture.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Texture.png b/vendor/SFML/doc/html/classsf_1_1Texture.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Texture.png rename to vendor/SFML/doc/html/classsf_1_1Texture.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Time-members.html b/vendor/SFML/doc/html/classsf_1_1Time-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Time-members.html rename to vendor/SFML/doc/html/classsf_1_1Time-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Time.html b/vendor/SFML/doc/html/classsf_1_1Time.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Time.html rename to vendor/SFML/doc/html/classsf_1_1Time.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Transform-members.html b/vendor/SFML/doc/html/classsf_1_1Transform-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Transform-members.html rename to vendor/SFML/doc/html/classsf_1_1Transform-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Transform.html b/vendor/SFML/doc/html/classsf_1_1Transform.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Transform.html rename to vendor/SFML/doc/html/classsf_1_1Transform.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Transformable-members.html b/vendor/SFML/doc/html/classsf_1_1Transformable-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Transformable-members.html rename to vendor/SFML/doc/html/classsf_1_1Transformable-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Transformable.html b/vendor/SFML/doc/html/classsf_1_1Transformable.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Transformable.html rename to vendor/SFML/doc/html/classsf_1_1Transformable.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Transformable.png b/vendor/SFML/doc/html/classsf_1_1Transformable.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Transformable.png rename to vendor/SFML/doc/html/classsf_1_1Transformable.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1UdpSocket-members.html b/vendor/SFML/doc/html/classsf_1_1UdpSocket-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1UdpSocket-members.html rename to vendor/SFML/doc/html/classsf_1_1UdpSocket-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1UdpSocket.html b/vendor/SFML/doc/html/classsf_1_1UdpSocket.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1UdpSocket.html rename to vendor/SFML/doc/html/classsf_1_1UdpSocket.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1UdpSocket.png b/vendor/SFML/doc/html/classsf_1_1UdpSocket.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1UdpSocket.png rename to vendor/SFML/doc/html/classsf_1_1UdpSocket.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Utf.html b/vendor/SFML/doc/html/classsf_1_1Utf.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Utf.html rename to vendor/SFML/doc/html/classsf_1_1Utf.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_0116_01_4-members.html b/vendor/SFML/doc/html/classsf_1_1Utf_3_0116_01_4-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_0116_01_4-members.html rename to vendor/SFML/doc/html/classsf_1_1Utf_3_0116_01_4-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_0116_01_4.html b/vendor/SFML/doc/html/classsf_1_1Utf_3_0116_01_4.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_0116_01_4.html rename to vendor/SFML/doc/html/classsf_1_1Utf_3_0116_01_4.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_0132_01_4-members.html b/vendor/SFML/doc/html/classsf_1_1Utf_3_0132_01_4-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_0132_01_4-members.html rename to vendor/SFML/doc/html/classsf_1_1Utf_3_0132_01_4-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_0132_01_4.html b/vendor/SFML/doc/html/classsf_1_1Utf_3_0132_01_4.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_0132_01_4.html rename to vendor/SFML/doc/html/classsf_1_1Utf_3_0132_01_4.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_018_01_4-members.html b/vendor/SFML/doc/html/classsf_1_1Utf_3_018_01_4-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_018_01_4-members.html rename to vendor/SFML/doc/html/classsf_1_1Utf_3_018_01_4-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_018_01_4.html b/vendor/SFML/doc/html/classsf_1_1Utf_3_018_01_4.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Utf_3_018_01_4.html rename to vendor/SFML/doc/html/classsf_1_1Utf_3_018_01_4.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Vector2-members.html b/vendor/SFML/doc/html/classsf_1_1Vector2-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Vector2-members.html rename to vendor/SFML/doc/html/classsf_1_1Vector2-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Vector2.html b/vendor/SFML/doc/html/classsf_1_1Vector2.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Vector2.html rename to vendor/SFML/doc/html/classsf_1_1Vector2.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Vector3-members.html b/vendor/SFML/doc/html/classsf_1_1Vector3-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Vector3-members.html rename to vendor/SFML/doc/html/classsf_1_1Vector3-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Vector3.html b/vendor/SFML/doc/html/classsf_1_1Vector3.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Vector3.html rename to vendor/SFML/doc/html/classsf_1_1Vector3.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1VertexArray-members.html b/vendor/SFML/doc/html/classsf_1_1VertexArray-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1VertexArray-members.html rename to vendor/SFML/doc/html/classsf_1_1VertexArray-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1VertexArray.html b/vendor/SFML/doc/html/classsf_1_1VertexArray.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1VertexArray.html rename to vendor/SFML/doc/html/classsf_1_1VertexArray.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1VertexArray.png b/vendor/SFML/doc/html/classsf_1_1VertexArray.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1VertexArray.png rename to vendor/SFML/doc/html/classsf_1_1VertexArray.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1VertexBuffer-members.html b/vendor/SFML/doc/html/classsf_1_1VertexBuffer-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1VertexBuffer-members.html rename to vendor/SFML/doc/html/classsf_1_1VertexBuffer-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1VertexBuffer.html b/vendor/SFML/doc/html/classsf_1_1VertexBuffer.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1VertexBuffer.html rename to vendor/SFML/doc/html/classsf_1_1VertexBuffer.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1VertexBuffer.png b/vendor/SFML/doc/html/classsf_1_1VertexBuffer.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1VertexBuffer.png rename to vendor/SFML/doc/html/classsf_1_1VertexBuffer.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1VideoMode-members.html b/vendor/SFML/doc/html/classsf_1_1VideoMode-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1VideoMode-members.html rename to vendor/SFML/doc/html/classsf_1_1VideoMode-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1VideoMode.html b/vendor/SFML/doc/html/classsf_1_1VideoMode.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1VideoMode.html rename to vendor/SFML/doc/html/classsf_1_1VideoMode.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1View-members.html b/vendor/SFML/doc/html/classsf_1_1View-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1View-members.html rename to vendor/SFML/doc/html/classsf_1_1View-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1View.html b/vendor/SFML/doc/html/classsf_1_1View.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1View.html rename to vendor/SFML/doc/html/classsf_1_1View.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Window-members.html b/vendor/SFML/doc/html/classsf_1_1Window-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Window-members.html rename to vendor/SFML/doc/html/classsf_1_1Window-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Window.html b/vendor/SFML/doc/html/classsf_1_1Window.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Window.html rename to vendor/SFML/doc/html/classsf_1_1Window.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1Window.png b/vendor/SFML/doc/html/classsf_1_1Window.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1Window.png rename to vendor/SFML/doc/html/classsf_1_1Window.png diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1WindowBase-members.html b/vendor/SFML/doc/html/classsf_1_1WindowBase-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1WindowBase-members.html rename to vendor/SFML/doc/html/classsf_1_1WindowBase-members.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1WindowBase.html b/vendor/SFML/doc/html/classsf_1_1WindowBase.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1WindowBase.html rename to vendor/SFML/doc/html/classsf_1_1WindowBase.html diff --git a/vendor/SFML-3.0.0/doc/html/classsf_1_1WindowBase.png b/vendor/SFML/doc/html/classsf_1_1WindowBase.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/classsf_1_1WindowBase.png rename to vendor/SFML/doc/html/classsf_1_1WindowBase.png diff --git a/vendor/SFML-3.0.0/doc/html/clipboard.js b/vendor/SFML/doc/html/clipboard.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/clipboard.js rename to vendor/SFML/doc/html/clipboard.js diff --git a/vendor/SFML-3.0.0/doc/html/closed.png b/vendor/SFML/doc/html/closed.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/closed.png rename to vendor/SFML/doc/html/closed.png diff --git a/vendor/SFML-3.0.0/doc/html/cookie.js b/vendor/SFML/doc/html/cookie.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/cookie.js rename to vendor/SFML/doc/html/cookie.js diff --git a/vendor/SFML-3.0.0/doc/html/dir_5cf786e58cbf7297a26339ae6e44357c.html b/vendor/SFML/doc/html/dir_5cf786e58cbf7297a26339ae6e44357c.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dir_5cf786e58cbf7297a26339ae6e44357c.html rename to vendor/SFML/doc/html/dir_5cf786e58cbf7297a26339ae6e44357c.html diff --git a/vendor/SFML-3.0.0/doc/html/dir_83d50c0b1f1eceb6f182949162e90861.html b/vendor/SFML/doc/html/dir_83d50c0b1f1eceb6f182949162e90861.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dir_83d50c0b1f1eceb6f182949162e90861.html rename to vendor/SFML/doc/html/dir_83d50c0b1f1eceb6f182949162e90861.html diff --git a/vendor/SFML-3.0.0/doc/html/dir_89e9fb32471ae291b179a889144513db.html b/vendor/SFML/doc/html/dir_89e9fb32471ae291b179a889144513db.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dir_89e9fb32471ae291b179a889144513db.html rename to vendor/SFML/doc/html/dir_89e9fb32471ae291b179a889144513db.html diff --git a/vendor/SFML-3.0.0/doc/html/dir_c0a853e81d6f1c1f0a3eb7a27dc24256.html b/vendor/SFML/doc/html/dir_c0a853e81d6f1c1f0a3eb7a27dc24256.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dir_c0a853e81d6f1c1f0a3eb7a27dc24256.html rename to vendor/SFML/doc/html/dir_c0a853e81d6f1c1f0a3eb7a27dc24256.html diff --git a/vendor/SFML-3.0.0/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/vendor/SFML/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html rename to vendor/SFML/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html diff --git a/vendor/SFML-3.0.0/doc/html/dir_dd49ddb3ba8035e4a328f8c5f31cda7e.html b/vendor/SFML/doc/html/dir_dd49ddb3ba8035e4a328f8c5f31cda7e.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dir_dd49ddb3ba8035e4a328f8c5f31cda7e.html rename to vendor/SFML/doc/html/dir_dd49ddb3ba8035e4a328f8c5f31cda7e.html diff --git a/vendor/SFML-3.0.0/doc/html/dir_e68e8157741866f444e17edd764ebbae.html b/vendor/SFML/doc/html/dir_e68e8157741866f444e17edd764ebbae.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dir_e68e8157741866f444e17edd764ebbae.html rename to vendor/SFML/doc/html/dir_e68e8157741866f444e17edd764ebbae.html diff --git a/vendor/SFML-3.0.0/doc/html/dir_e71ec51a9abd604c65f6abb639f6ea75.html b/vendor/SFML/doc/html/dir_e71ec51a9abd604c65f6abb639f6ea75.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dir_e71ec51a9abd604c65f6abb639f6ea75.html rename to vendor/SFML/doc/html/dir_e71ec51a9abd604c65f6abb639f6ea75.html diff --git a/vendor/SFML-3.0.0/doc/html/doc.svg b/vendor/SFML/doc/html/doc.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/doc.svg rename to vendor/SFML/doc/html/doc.svg diff --git a/vendor/SFML-3.0.0/doc/html/docd.svg b/vendor/SFML/doc/html/docd.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/docd.svg rename to vendor/SFML/doc/html/docd.svg diff --git a/vendor/SFML-3.0.0/doc/html/doxygen.css b/vendor/SFML/doc/html/doxygen.css similarity index 100% rename from vendor/SFML-3.0.0/doc/html/doxygen.css rename to vendor/SFML/doc/html/doxygen.css diff --git a/vendor/SFML-3.0.0/doc/html/doxygen.svg b/vendor/SFML/doc/html/doxygen.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/doxygen.svg rename to vendor/SFML/doc/html/doxygen.svg diff --git a/vendor/SFML-3.0.0/doc/html/doxygen_crawl.html b/vendor/SFML/doc/html/doxygen_crawl.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/doxygen_crawl.html rename to vendor/SFML/doc/html/doxygen_crawl.html diff --git a/vendor/SFML-3.0.0/doc/html/dynsections.js b/vendor/SFML/doc/html/dynsections.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/dynsections.js rename to vendor/SFML/doc/html/dynsections.js diff --git a/vendor/SFML-3.0.0/doc/html/files.html b/vendor/SFML/doc/html/files.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/files.html rename to vendor/SFML/doc/html/files.html diff --git a/vendor/SFML-3.0.0/doc/html/folderclosed.svg b/vendor/SFML/doc/html/folderclosed.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/folderclosed.svg rename to vendor/SFML/doc/html/folderclosed.svg diff --git a/vendor/SFML-3.0.0/doc/html/folderclosedd.svg b/vendor/SFML/doc/html/folderclosedd.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/folderclosedd.svg rename to vendor/SFML/doc/html/folderclosedd.svg diff --git a/vendor/SFML-3.0.0/doc/html/folderopen.svg b/vendor/SFML/doc/html/folderopen.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/folderopen.svg rename to vendor/SFML/doc/html/folderopen.svg diff --git a/vendor/SFML-3.0.0/doc/html/folderopend.svg b/vendor/SFML/doc/html/folderopend.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/folderopend.svg rename to vendor/SFML/doc/html/folderopend.svg diff --git a/vendor/SFML-3.0.0/doc/html/functions.html b/vendor/SFML/doc/html/functions.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions.html rename to vendor/SFML/doc/html/functions.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_b.html b/vendor/SFML/doc/html/functions_b.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_b.html rename to vendor/SFML/doc/html/functions_b.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_c.html b/vendor/SFML/doc/html/functions_c.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_c.html rename to vendor/SFML/doc/html/functions_c.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_d.html b/vendor/SFML/doc/html/functions_d.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_d.html rename to vendor/SFML/doc/html/functions_d.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_e.html b/vendor/SFML/doc/html/functions_e.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_e.html rename to vendor/SFML/doc/html/functions_e.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_enum.html b/vendor/SFML/doc/html/functions_enum.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_enum.html rename to vendor/SFML/doc/html/functions_enum.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_eval.html b/vendor/SFML/doc/html/functions_eval.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_eval.html rename to vendor/SFML/doc/html/functions_eval.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_f.html b/vendor/SFML/doc/html/functions_f.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_f.html rename to vendor/SFML/doc/html/functions_f.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func.html b/vendor/SFML/doc/html/functions_func.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func.html rename to vendor/SFML/doc/html/functions_func.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_b.html b/vendor/SFML/doc/html/functions_func_b.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_b.html rename to vendor/SFML/doc/html/functions_func_b.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_c.html b/vendor/SFML/doc/html/functions_func_c.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_c.html rename to vendor/SFML/doc/html/functions_func_c.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_d.html b/vendor/SFML/doc/html/functions_func_d.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_d.html rename to vendor/SFML/doc/html/functions_func_d.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_e.html b/vendor/SFML/doc/html/functions_func_e.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_e.html rename to vendor/SFML/doc/html/functions_func_e.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_f.html b/vendor/SFML/doc/html/functions_func_f.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_f.html rename to vendor/SFML/doc/html/functions_func_f.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_g.html b/vendor/SFML/doc/html/functions_func_g.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_g.html rename to vendor/SFML/doc/html/functions_func_g.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_h.html b/vendor/SFML/doc/html/functions_func_h.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_h.html rename to vendor/SFML/doc/html/functions_func_h.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_i.html b/vendor/SFML/doc/html/functions_func_i.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_i.html rename to vendor/SFML/doc/html/functions_func_i.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_k.html b/vendor/SFML/doc/html/functions_func_k.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_k.html rename to vendor/SFML/doc/html/functions_func_k.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_l.html b/vendor/SFML/doc/html/functions_func_l.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_l.html rename to vendor/SFML/doc/html/functions_func_l.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_m.html b/vendor/SFML/doc/html/functions_func_m.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_m.html rename to vendor/SFML/doc/html/functions_func_m.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_n.html b/vendor/SFML/doc/html/functions_func_n.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_n.html rename to vendor/SFML/doc/html/functions_func_n.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_o.html b/vendor/SFML/doc/html/functions_func_o.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_o.html rename to vendor/SFML/doc/html/functions_func_o.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_p.html b/vendor/SFML/doc/html/functions_func_p.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_p.html rename to vendor/SFML/doc/html/functions_func_p.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_r.html b/vendor/SFML/doc/html/functions_func_r.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_r.html rename to vendor/SFML/doc/html/functions_func_r.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_s.html b/vendor/SFML/doc/html/functions_func_s.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_s.html rename to vendor/SFML/doc/html/functions_func_s.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_t.html b/vendor/SFML/doc/html/functions_func_t.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_t.html rename to vendor/SFML/doc/html/functions_func_t.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_u.html b/vendor/SFML/doc/html/functions_func_u.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_u.html rename to vendor/SFML/doc/html/functions_func_u.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_v.html b/vendor/SFML/doc/html/functions_func_v.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_v.html rename to vendor/SFML/doc/html/functions_func_v.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_w.html b/vendor/SFML/doc/html/functions_func_w.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_w.html rename to vendor/SFML/doc/html/functions_func_w.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_z.html b/vendor/SFML/doc/html/functions_func_z.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_z.html rename to vendor/SFML/doc/html/functions_func_z.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_func_~.html b/vendor/SFML/doc/html/functions_func_~.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_func_~.html rename to vendor/SFML/doc/html/functions_func_~.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_g.html b/vendor/SFML/doc/html/functions_g.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_g.html rename to vendor/SFML/doc/html/functions_g.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_h.html b/vendor/SFML/doc/html/functions_h.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_h.html rename to vendor/SFML/doc/html/functions_h.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_i.html b/vendor/SFML/doc/html/functions_i.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_i.html rename to vendor/SFML/doc/html/functions_i.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_j.html b/vendor/SFML/doc/html/functions_j.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_j.html rename to vendor/SFML/doc/html/functions_j.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_k.html b/vendor/SFML/doc/html/functions_k.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_k.html rename to vendor/SFML/doc/html/functions_k.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_l.html b/vendor/SFML/doc/html/functions_l.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_l.html rename to vendor/SFML/doc/html/functions_l.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_m.html b/vendor/SFML/doc/html/functions_m.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_m.html rename to vendor/SFML/doc/html/functions_m.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_n.html b/vendor/SFML/doc/html/functions_n.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_n.html rename to vendor/SFML/doc/html/functions_n.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_o.html b/vendor/SFML/doc/html/functions_o.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_o.html rename to vendor/SFML/doc/html/functions_o.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_p.html b/vendor/SFML/doc/html/functions_p.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_p.html rename to vendor/SFML/doc/html/functions_p.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_r.html b/vendor/SFML/doc/html/functions_r.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_r.html rename to vendor/SFML/doc/html/functions_r.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_rela.html b/vendor/SFML/doc/html/functions_rela.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_rela.html rename to vendor/SFML/doc/html/functions_rela.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_s.html b/vendor/SFML/doc/html/functions_s.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_s.html rename to vendor/SFML/doc/html/functions_s.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_t.html b/vendor/SFML/doc/html/functions_t.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_t.html rename to vendor/SFML/doc/html/functions_t.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_type.html b/vendor/SFML/doc/html/functions_type.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_type.html rename to vendor/SFML/doc/html/functions_type.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_u.html b/vendor/SFML/doc/html/functions_u.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_u.html rename to vendor/SFML/doc/html/functions_u.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_v.html b/vendor/SFML/doc/html/functions_v.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_v.html rename to vendor/SFML/doc/html/functions_v.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_vars.html b/vendor/SFML/doc/html/functions_vars.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_vars.html rename to vendor/SFML/doc/html/functions_vars.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_w.html b/vendor/SFML/doc/html/functions_w.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_w.html rename to vendor/SFML/doc/html/functions_w.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_x.html b/vendor/SFML/doc/html/functions_x.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_x.html rename to vendor/SFML/doc/html/functions_x.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_y.html b/vendor/SFML/doc/html/functions_y.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_y.html rename to vendor/SFML/doc/html/functions_y.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_z.html b/vendor/SFML/doc/html/functions_z.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_z.html rename to vendor/SFML/doc/html/functions_z.html diff --git a/vendor/SFML-3.0.0/doc/html/functions_~.html b/vendor/SFML/doc/html/functions_~.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/functions_~.html rename to vendor/SFML/doc/html/functions_~.html diff --git a/vendor/SFML-3.0.0/doc/html/globals.html b/vendor/SFML/doc/html/globals.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/globals.html rename to vendor/SFML/doc/html/globals.html diff --git a/vendor/SFML-3.0.0/doc/html/globals_defs.html b/vendor/SFML/doc/html/globals_defs.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/globals_defs.html rename to vendor/SFML/doc/html/globals_defs.html diff --git a/vendor/SFML-3.0.0/doc/html/globals_type.html b/vendor/SFML/doc/html/globals_type.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/globals_type.html rename to vendor/SFML/doc/html/globals_type.html diff --git a/vendor/SFML-3.0.0/doc/html/group__audio.html b/vendor/SFML/doc/html/group__audio.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/group__audio.html rename to vendor/SFML/doc/html/group__audio.html diff --git a/vendor/SFML-3.0.0/doc/html/group__graphics.html b/vendor/SFML/doc/html/group__graphics.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/group__graphics.html rename to vendor/SFML/doc/html/group__graphics.html diff --git a/vendor/SFML-3.0.0/doc/html/group__network.html b/vendor/SFML/doc/html/group__network.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/group__network.html rename to vendor/SFML/doc/html/group__network.html diff --git a/vendor/SFML-3.0.0/doc/html/group__system.html b/vendor/SFML/doc/html/group__system.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/group__system.html rename to vendor/SFML/doc/html/group__system.html diff --git a/vendor/SFML-3.0.0/doc/html/group__window.html b/vendor/SFML/doc/html/group__window.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/group__window.html rename to vendor/SFML/doc/html/group__window.html diff --git a/vendor/SFML-3.0.0/doc/html/hierarchy.html b/vendor/SFML/doc/html/hierarchy.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/hierarchy.html rename to vendor/SFML/doc/html/hierarchy.html diff --git a/vendor/SFML-3.0.0/doc/html/index.html b/vendor/SFML/doc/html/index.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/index.html rename to vendor/SFML/doc/html/index.html diff --git a/vendor/SFML-3.0.0/doc/html/jquery.js b/vendor/SFML/doc/html/jquery.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/jquery.js rename to vendor/SFML/doc/html/jquery.js diff --git a/vendor/SFML-3.0.0/doc/html/mainpage_8hpp.html b/vendor/SFML/doc/html/mainpage_8hpp.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/mainpage_8hpp.html rename to vendor/SFML/doc/html/mainpage_8hpp.html diff --git a/vendor/SFML-3.0.0/doc/html/mainpage_8hpp_source.html b/vendor/SFML/doc/html/mainpage_8hpp_source.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/mainpage_8hpp_source.html rename to vendor/SFML/doc/html/mainpage_8hpp_source.html diff --git a/vendor/SFML-3.0.0/doc/html/menudata.js b/vendor/SFML/doc/html/menudata.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/menudata.js rename to vendor/SFML/doc/html/menudata.js diff --git a/vendor/SFML-3.0.0/doc/html/minus.svg b/vendor/SFML/doc/html/minus.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/minus.svg rename to vendor/SFML/doc/html/minus.svg diff --git a/vendor/SFML-3.0.0/doc/html/minusd.svg b/vendor/SFML/doc/html/minusd.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/minusd.svg rename to vendor/SFML/doc/html/minusd.svg diff --git a/vendor/SFML-3.0.0/doc/html/namespacemembers.html b/vendor/SFML/doc/html/namespacemembers.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacemembers.html rename to vendor/SFML/doc/html/namespacemembers.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacemembers_enum.html b/vendor/SFML/doc/html/namespacemembers_enum.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacemembers_enum.html rename to vendor/SFML/doc/html/namespacemembers_enum.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacemembers_eval.html b/vendor/SFML/doc/html/namespacemembers_eval.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacemembers_eval.html rename to vendor/SFML/doc/html/namespacemembers_eval.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacemembers_func.html b/vendor/SFML/doc/html/namespacemembers_func.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacemembers_func.html rename to vendor/SFML/doc/html/namespacemembers_func.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacemembers_type.html b/vendor/SFML/doc/html/namespacemembers_type.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacemembers_type.html rename to vendor/SFML/doc/html/namespacemembers_type.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacemembers_vars.html b/vendor/SFML/doc/html/namespacemembers_vars.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacemembers_vars.html rename to vendor/SFML/doc/html/namespacemembers_vars.html diff --git a/vendor/SFML-3.0.0/doc/html/namespaces.html b/vendor/SFML/doc/html/namespaces.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespaces.html rename to vendor/SFML/doc/html/namespaces.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf.html b/vendor/SFML/doc/html/namespacesf.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf.html rename to vendor/SFML/doc/html/namespacesf.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Clipboard.html b/vendor/SFML/doc/html/namespacesf_1_1Clipboard.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Clipboard.html rename to vendor/SFML/doc/html/namespacesf_1_1Clipboard.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Glsl.html b/vendor/SFML/doc/html/namespacesf_1_1Glsl.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Glsl.html rename to vendor/SFML/doc/html/namespacesf_1_1Glsl.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Joystick.html b/vendor/SFML/doc/html/namespacesf_1_1Joystick.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Joystick.html rename to vendor/SFML/doc/html/namespacesf_1_1Joystick.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Keyboard.html b/vendor/SFML/doc/html/namespacesf_1_1Keyboard.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Keyboard.html rename to vendor/SFML/doc/html/namespacesf_1_1Keyboard.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Listener.html b/vendor/SFML/doc/html/namespacesf_1_1Listener.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Listener.html rename to vendor/SFML/doc/html/namespacesf_1_1Listener.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Literals.html b/vendor/SFML/doc/html/namespacesf_1_1Literals.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Literals.html rename to vendor/SFML/doc/html/namespacesf_1_1Literals.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Mouse.html b/vendor/SFML/doc/html/namespacesf_1_1Mouse.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Mouse.html rename to vendor/SFML/doc/html/namespacesf_1_1Mouse.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1PlaybackDevice.html b/vendor/SFML/doc/html/namespacesf_1_1PlaybackDevice.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1PlaybackDevice.html rename to vendor/SFML/doc/html/namespacesf_1_1PlaybackDevice.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Sensor.html b/vendor/SFML/doc/html/namespacesf_1_1Sensor.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Sensor.html rename to vendor/SFML/doc/html/namespacesf_1_1Sensor.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Style.html b/vendor/SFML/doc/html/namespacesf_1_1Style.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Style.html rename to vendor/SFML/doc/html/namespacesf_1_1Style.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Touch.html b/vendor/SFML/doc/html/namespacesf_1_1Touch.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Touch.html rename to vendor/SFML/doc/html/namespacesf_1_1Touch.html diff --git a/vendor/SFML-3.0.0/doc/html/namespacesf_1_1Vulkan.html b/vendor/SFML/doc/html/namespacesf_1_1Vulkan.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/namespacesf_1_1Vulkan.html rename to vendor/SFML/doc/html/namespacesf_1_1Vulkan.html diff --git a/vendor/SFML-3.0.0/doc/html/nav_f.png b/vendor/SFML/doc/html/nav_f.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/nav_f.png rename to vendor/SFML/doc/html/nav_f.png diff --git a/vendor/SFML-3.0.0/doc/html/nav_fd.png b/vendor/SFML/doc/html/nav_fd.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/nav_fd.png rename to vendor/SFML/doc/html/nav_fd.png diff --git a/vendor/SFML-3.0.0/doc/html/nav_g.png b/vendor/SFML/doc/html/nav_g.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/nav_g.png rename to vendor/SFML/doc/html/nav_g.png diff --git a/vendor/SFML-3.0.0/doc/html/nav_h.png b/vendor/SFML/doc/html/nav_h.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/nav_h.png rename to vendor/SFML/doc/html/nav_h.png diff --git a/vendor/SFML-3.0.0/doc/html/nav_hd.png b/vendor/SFML/doc/html/nav_hd.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/nav_hd.png rename to vendor/SFML/doc/html/nav_hd.png diff --git a/vendor/SFML-3.0.0/doc/html/navtree.css b/vendor/SFML/doc/html/navtree.css similarity index 100% rename from vendor/SFML-3.0.0/doc/html/navtree.css rename to vendor/SFML/doc/html/navtree.css diff --git a/vendor/SFML-3.0.0/doc/html/open.png b/vendor/SFML/doc/html/open.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/open.png rename to vendor/SFML/doc/html/open.png diff --git a/vendor/SFML-3.0.0/doc/html/plus.svg b/vendor/SFML/doc/html/plus.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/plus.svg rename to vendor/SFML/doc/html/plus.svg diff --git a/vendor/SFML-3.0.0/doc/html/plusd.svg b/vendor/SFML/doc/html/plusd.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/plusd.svg rename to vendor/SFML/doc/html/plusd.svg diff --git a/vendor/SFML-3.0.0/doc/html/resize.js b/vendor/SFML/doc/html/resize.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/resize.js rename to vendor/SFML/doc/html/resize.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_0.js b/vendor/SFML/doc/html/search/all_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_0.js rename to vendor/SFML/doc/html/search/all_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_1.js b/vendor/SFML/doc/html/search/all_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_1.js rename to vendor/SFML/doc/html/search/all_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_10.js b/vendor/SFML/doc/html/search/all_10.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_10.js rename to vendor/SFML/doc/html/search/all_10.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_11.js b/vendor/SFML/doc/html/search/all_11.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_11.js rename to vendor/SFML/doc/html/search/all_11.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_12.js b/vendor/SFML/doc/html/search/all_12.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_12.js rename to vendor/SFML/doc/html/search/all_12.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_13.js b/vendor/SFML/doc/html/search/all_13.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_13.js rename to vendor/SFML/doc/html/search/all_13.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_14.js b/vendor/SFML/doc/html/search/all_14.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_14.js rename to vendor/SFML/doc/html/search/all_14.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_15.js b/vendor/SFML/doc/html/search/all_15.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_15.js rename to vendor/SFML/doc/html/search/all_15.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_16.js b/vendor/SFML/doc/html/search/all_16.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_16.js rename to vendor/SFML/doc/html/search/all_16.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_17.js b/vendor/SFML/doc/html/search/all_17.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_17.js rename to vendor/SFML/doc/html/search/all_17.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_18.js b/vendor/SFML/doc/html/search/all_18.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_18.js rename to vendor/SFML/doc/html/search/all_18.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_19.js b/vendor/SFML/doc/html/search/all_19.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_19.js rename to vendor/SFML/doc/html/search/all_19.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_1a.js b/vendor/SFML/doc/html/search/all_1a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_1a.js rename to vendor/SFML/doc/html/search/all_1a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_2.js b/vendor/SFML/doc/html/search/all_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_2.js rename to vendor/SFML/doc/html/search/all_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_3.js b/vendor/SFML/doc/html/search/all_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_3.js rename to vendor/SFML/doc/html/search/all_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_4.js b/vendor/SFML/doc/html/search/all_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_4.js rename to vendor/SFML/doc/html/search/all_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_5.js b/vendor/SFML/doc/html/search/all_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_5.js rename to vendor/SFML/doc/html/search/all_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_6.js b/vendor/SFML/doc/html/search/all_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_6.js rename to vendor/SFML/doc/html/search/all_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_7.js b/vendor/SFML/doc/html/search/all_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_7.js rename to vendor/SFML/doc/html/search/all_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_8.js b/vendor/SFML/doc/html/search/all_8.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_8.js rename to vendor/SFML/doc/html/search/all_8.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_9.js b/vendor/SFML/doc/html/search/all_9.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_9.js rename to vendor/SFML/doc/html/search/all_9.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_a.js b/vendor/SFML/doc/html/search/all_a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_a.js rename to vendor/SFML/doc/html/search/all_a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_b.js b/vendor/SFML/doc/html/search/all_b.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_b.js rename to vendor/SFML/doc/html/search/all_b.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_c.js b/vendor/SFML/doc/html/search/all_c.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_c.js rename to vendor/SFML/doc/html/search/all_c.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_d.js b/vendor/SFML/doc/html/search/all_d.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_d.js rename to vendor/SFML/doc/html/search/all_d.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_e.js b/vendor/SFML/doc/html/search/all_e.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_e.js rename to vendor/SFML/doc/html/search/all_e.js diff --git a/vendor/SFML-3.0.0/doc/html/search/all_f.js b/vendor/SFML/doc/html/search/all_f.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/all_f.js rename to vendor/SFML/doc/html/search/all_f.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_0.js b/vendor/SFML/doc/html/search/classes_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_0.js rename to vendor/SFML/doc/html/search/classes_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_1.js b/vendor/SFML/doc/html/search/classes_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_1.js rename to vendor/SFML/doc/html/search/classes_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_10.js b/vendor/SFML/doc/html/search/classes_10.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_10.js rename to vendor/SFML/doc/html/search/classes_10.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_11.js b/vendor/SFML/doc/html/search/classes_11.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_11.js rename to vendor/SFML/doc/html/search/classes_11.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_12.js b/vendor/SFML/doc/html/search/classes_12.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_12.js rename to vendor/SFML/doc/html/search/classes_12.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_13.js b/vendor/SFML/doc/html/search/classes_13.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_13.js rename to vendor/SFML/doc/html/search/classes_13.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_14.js b/vendor/SFML/doc/html/search/classes_14.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_14.js rename to vendor/SFML/doc/html/search/classes_14.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_2.js b/vendor/SFML/doc/html/search/classes_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_2.js rename to vendor/SFML/doc/html/search/classes_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_3.js b/vendor/SFML/doc/html/search/classes_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_3.js rename to vendor/SFML/doc/html/search/classes_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_4.js b/vendor/SFML/doc/html/search/classes_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_4.js rename to vendor/SFML/doc/html/search/classes_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_5.js b/vendor/SFML/doc/html/search/classes_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_5.js rename to vendor/SFML/doc/html/search/classes_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_6.js b/vendor/SFML/doc/html/search/classes_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_6.js rename to vendor/SFML/doc/html/search/classes_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_7.js b/vendor/SFML/doc/html/search/classes_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_7.js rename to vendor/SFML/doc/html/search/classes_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_8.js b/vendor/SFML/doc/html/search/classes_8.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_8.js rename to vendor/SFML/doc/html/search/classes_8.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_9.js b/vendor/SFML/doc/html/search/classes_9.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_9.js rename to vendor/SFML/doc/html/search/classes_9.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_a.js b/vendor/SFML/doc/html/search/classes_a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_a.js rename to vendor/SFML/doc/html/search/classes_a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_b.js b/vendor/SFML/doc/html/search/classes_b.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_b.js rename to vendor/SFML/doc/html/search/classes_b.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_c.js b/vendor/SFML/doc/html/search/classes_c.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_c.js rename to vendor/SFML/doc/html/search/classes_c.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_d.js b/vendor/SFML/doc/html/search/classes_d.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_d.js rename to vendor/SFML/doc/html/search/classes_d.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_e.js b/vendor/SFML/doc/html/search/classes_e.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_e.js rename to vendor/SFML/doc/html/search/classes_e.js diff --git a/vendor/SFML-3.0.0/doc/html/search/classes_f.js b/vendor/SFML/doc/html/search/classes_f.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/classes_f.js rename to vendor/SFML/doc/html/search/classes_f.js diff --git a/vendor/SFML-3.0.0/doc/html/search/close.svg b/vendor/SFML/doc/html/search/close.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/close.svg rename to vendor/SFML/doc/html/search/close.svg diff --git a/vendor/SFML-3.0.0/doc/html/search/defines_0.js b/vendor/SFML/doc/html/search/defines_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/defines_0.js rename to vendor/SFML/doc/html/search/defines_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_0.js b/vendor/SFML/doc/html/search/enums_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_0.js rename to vendor/SFML/doc/html/search/enums_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_1.js b/vendor/SFML/doc/html/search/enums_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_1.js rename to vendor/SFML/doc/html/search/enums_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_2.js b/vendor/SFML/doc/html/search/enums_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_2.js rename to vendor/SFML/doc/html/search/enums_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_3.js b/vendor/SFML/doc/html/search/enums_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_3.js rename to vendor/SFML/doc/html/search/enums_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_4.js b/vendor/SFML/doc/html/search/enums_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_4.js rename to vendor/SFML/doc/html/search/enums_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_5.js b/vendor/SFML/doc/html/search/enums_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_5.js rename to vendor/SFML/doc/html/search/enums_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_6.js b/vendor/SFML/doc/html/search/enums_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_6.js rename to vendor/SFML/doc/html/search/enums_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_7.js b/vendor/SFML/doc/html/search/enums_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_7.js rename to vendor/SFML/doc/html/search/enums_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_8.js b/vendor/SFML/doc/html/search/enums_8.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_8.js rename to vendor/SFML/doc/html/search/enums_8.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_9.js b/vendor/SFML/doc/html/search/enums_9.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_9.js rename to vendor/SFML/doc/html/search/enums_9.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_a.js b/vendor/SFML/doc/html/search/enums_a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_a.js rename to vendor/SFML/doc/html/search/enums_a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enums_b.js b/vendor/SFML/doc/html/search/enums_b.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enums_b.js rename to vendor/SFML/doc/html/search/enums_b.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_0.js b/vendor/SFML/doc/html/search/enumvalues_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_0.js rename to vendor/SFML/doc/html/search/enumvalues_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_1.js b/vendor/SFML/doc/html/search/enumvalues_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_1.js rename to vendor/SFML/doc/html/search/enumvalues_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_10.js b/vendor/SFML/doc/html/search/enumvalues_10.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_10.js rename to vendor/SFML/doc/html/search/enumvalues_10.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_11.js b/vendor/SFML/doc/html/search/enumvalues_11.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_11.js rename to vendor/SFML/doc/html/search/enumvalues_11.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_12.js b/vendor/SFML/doc/html/search/enumvalues_12.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_12.js rename to vendor/SFML/doc/html/search/enumvalues_12.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_13.js b/vendor/SFML/doc/html/search/enumvalues_13.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_13.js rename to vendor/SFML/doc/html/search/enumvalues_13.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_14.js b/vendor/SFML/doc/html/search/enumvalues_14.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_14.js rename to vendor/SFML/doc/html/search/enumvalues_14.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_15.js b/vendor/SFML/doc/html/search/enumvalues_15.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_15.js rename to vendor/SFML/doc/html/search/enumvalues_15.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_16.js b/vendor/SFML/doc/html/search/enumvalues_16.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_16.js rename to vendor/SFML/doc/html/search/enumvalues_16.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_17.js b/vendor/SFML/doc/html/search/enumvalues_17.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_17.js rename to vendor/SFML/doc/html/search/enumvalues_17.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_18.js b/vendor/SFML/doc/html/search/enumvalues_18.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_18.js rename to vendor/SFML/doc/html/search/enumvalues_18.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_19.js b/vendor/SFML/doc/html/search/enumvalues_19.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_19.js rename to vendor/SFML/doc/html/search/enumvalues_19.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_2.js b/vendor/SFML/doc/html/search/enumvalues_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_2.js rename to vendor/SFML/doc/html/search/enumvalues_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_3.js b/vendor/SFML/doc/html/search/enumvalues_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_3.js rename to vendor/SFML/doc/html/search/enumvalues_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_4.js b/vendor/SFML/doc/html/search/enumvalues_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_4.js rename to vendor/SFML/doc/html/search/enumvalues_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_5.js b/vendor/SFML/doc/html/search/enumvalues_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_5.js rename to vendor/SFML/doc/html/search/enumvalues_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_6.js b/vendor/SFML/doc/html/search/enumvalues_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_6.js rename to vendor/SFML/doc/html/search/enumvalues_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_7.js b/vendor/SFML/doc/html/search/enumvalues_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_7.js rename to vendor/SFML/doc/html/search/enumvalues_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_8.js b/vendor/SFML/doc/html/search/enumvalues_8.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_8.js rename to vendor/SFML/doc/html/search/enumvalues_8.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_9.js b/vendor/SFML/doc/html/search/enumvalues_9.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_9.js rename to vendor/SFML/doc/html/search/enumvalues_9.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_a.js b/vendor/SFML/doc/html/search/enumvalues_a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_a.js rename to vendor/SFML/doc/html/search/enumvalues_a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_b.js b/vendor/SFML/doc/html/search/enumvalues_b.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_b.js rename to vendor/SFML/doc/html/search/enumvalues_b.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_c.js b/vendor/SFML/doc/html/search/enumvalues_c.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_c.js rename to vendor/SFML/doc/html/search/enumvalues_c.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_d.js b/vendor/SFML/doc/html/search/enumvalues_d.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_d.js rename to vendor/SFML/doc/html/search/enumvalues_d.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_e.js b/vendor/SFML/doc/html/search/enumvalues_e.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_e.js rename to vendor/SFML/doc/html/search/enumvalues_e.js diff --git a/vendor/SFML-3.0.0/doc/html/search/enumvalues_f.js b/vendor/SFML/doc/html/search/enumvalues_f.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/enumvalues_f.js rename to vendor/SFML/doc/html/search/enumvalues_f.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_0.js b/vendor/SFML/doc/html/search/files_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_0.js rename to vendor/SFML/doc/html/search/files_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_1.js b/vendor/SFML/doc/html/search/files_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_1.js rename to vendor/SFML/doc/html/search/files_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_10.js b/vendor/SFML/doc/html/search/files_10.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_10.js rename to vendor/SFML/doc/html/search/files_10.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_11.js b/vendor/SFML/doc/html/search/files_11.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_11.js rename to vendor/SFML/doc/html/search/files_11.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_12.js b/vendor/SFML/doc/html/search/files_12.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_12.js rename to vendor/SFML/doc/html/search/files_12.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_13.js b/vendor/SFML/doc/html/search/files_13.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_13.js rename to vendor/SFML/doc/html/search/files_13.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_14.js b/vendor/SFML/doc/html/search/files_14.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_14.js rename to vendor/SFML/doc/html/search/files_14.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_15.js b/vendor/SFML/doc/html/search/files_15.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_15.js rename to vendor/SFML/doc/html/search/files_15.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_2.js b/vendor/SFML/doc/html/search/files_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_2.js rename to vendor/SFML/doc/html/search/files_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_3.js b/vendor/SFML/doc/html/search/files_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_3.js rename to vendor/SFML/doc/html/search/files_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_4.js b/vendor/SFML/doc/html/search/files_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_4.js rename to vendor/SFML/doc/html/search/files_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_5.js b/vendor/SFML/doc/html/search/files_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_5.js rename to vendor/SFML/doc/html/search/files_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_6.js b/vendor/SFML/doc/html/search/files_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_6.js rename to vendor/SFML/doc/html/search/files_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_7.js b/vendor/SFML/doc/html/search/files_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_7.js rename to vendor/SFML/doc/html/search/files_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_8.js b/vendor/SFML/doc/html/search/files_8.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_8.js rename to vendor/SFML/doc/html/search/files_8.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_9.js b/vendor/SFML/doc/html/search/files_9.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_9.js rename to vendor/SFML/doc/html/search/files_9.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_a.js b/vendor/SFML/doc/html/search/files_a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_a.js rename to vendor/SFML/doc/html/search/files_a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_b.js b/vendor/SFML/doc/html/search/files_b.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_b.js rename to vendor/SFML/doc/html/search/files_b.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_c.js b/vendor/SFML/doc/html/search/files_c.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_c.js rename to vendor/SFML/doc/html/search/files_c.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_d.js b/vendor/SFML/doc/html/search/files_d.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_d.js rename to vendor/SFML/doc/html/search/files_d.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_e.js b/vendor/SFML/doc/html/search/files_e.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_e.js rename to vendor/SFML/doc/html/search/files_e.js diff --git a/vendor/SFML-3.0.0/doc/html/search/files_f.js b/vendor/SFML/doc/html/search/files_f.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/files_f.js rename to vendor/SFML/doc/html/search/files_f.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_0.js b/vendor/SFML/doc/html/search/functions_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_0.js rename to vendor/SFML/doc/html/search/functions_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_1.js b/vendor/SFML/doc/html/search/functions_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_1.js rename to vendor/SFML/doc/html/search/functions_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_10.js b/vendor/SFML/doc/html/search/functions_10.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_10.js rename to vendor/SFML/doc/html/search/functions_10.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_11.js b/vendor/SFML/doc/html/search/functions_11.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_11.js rename to vendor/SFML/doc/html/search/functions_11.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_12.js b/vendor/SFML/doc/html/search/functions_12.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_12.js rename to vendor/SFML/doc/html/search/functions_12.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_13.js b/vendor/SFML/doc/html/search/functions_13.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_13.js rename to vendor/SFML/doc/html/search/functions_13.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_14.js b/vendor/SFML/doc/html/search/functions_14.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_14.js rename to vendor/SFML/doc/html/search/functions_14.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_15.js b/vendor/SFML/doc/html/search/functions_15.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_15.js rename to vendor/SFML/doc/html/search/functions_15.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_16.js b/vendor/SFML/doc/html/search/functions_16.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_16.js rename to vendor/SFML/doc/html/search/functions_16.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_2.js b/vendor/SFML/doc/html/search/functions_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_2.js rename to vendor/SFML/doc/html/search/functions_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_3.js b/vendor/SFML/doc/html/search/functions_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_3.js rename to vendor/SFML/doc/html/search/functions_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_4.js b/vendor/SFML/doc/html/search/functions_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_4.js rename to vendor/SFML/doc/html/search/functions_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_5.js b/vendor/SFML/doc/html/search/functions_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_5.js rename to vendor/SFML/doc/html/search/functions_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_6.js b/vendor/SFML/doc/html/search/functions_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_6.js rename to vendor/SFML/doc/html/search/functions_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_7.js b/vendor/SFML/doc/html/search/functions_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_7.js rename to vendor/SFML/doc/html/search/functions_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_8.js b/vendor/SFML/doc/html/search/functions_8.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_8.js rename to vendor/SFML/doc/html/search/functions_8.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_9.js b/vendor/SFML/doc/html/search/functions_9.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_9.js rename to vendor/SFML/doc/html/search/functions_9.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_a.js b/vendor/SFML/doc/html/search/functions_a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_a.js rename to vendor/SFML/doc/html/search/functions_a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_b.js b/vendor/SFML/doc/html/search/functions_b.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_b.js rename to vendor/SFML/doc/html/search/functions_b.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_c.js b/vendor/SFML/doc/html/search/functions_c.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_c.js rename to vendor/SFML/doc/html/search/functions_c.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_d.js b/vendor/SFML/doc/html/search/functions_d.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_d.js rename to vendor/SFML/doc/html/search/functions_d.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_e.js b/vendor/SFML/doc/html/search/functions_e.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_e.js rename to vendor/SFML/doc/html/search/functions_e.js diff --git a/vendor/SFML-3.0.0/doc/html/search/functions_f.js b/vendor/SFML/doc/html/search/functions_f.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/functions_f.js rename to vendor/SFML/doc/html/search/functions_f.js diff --git a/vendor/SFML-3.0.0/doc/html/search/groups_0.js b/vendor/SFML/doc/html/search/groups_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/groups_0.js rename to vendor/SFML/doc/html/search/groups_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/groups_1.js b/vendor/SFML/doc/html/search/groups_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/groups_1.js rename to vendor/SFML/doc/html/search/groups_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/groups_2.js b/vendor/SFML/doc/html/search/groups_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/groups_2.js rename to vendor/SFML/doc/html/search/groups_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/groups_3.js b/vendor/SFML/doc/html/search/groups_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/groups_3.js rename to vendor/SFML/doc/html/search/groups_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/groups_4.js b/vendor/SFML/doc/html/search/groups_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/groups_4.js rename to vendor/SFML/doc/html/search/groups_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/groups_5.js b/vendor/SFML/doc/html/search/groups_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/groups_5.js rename to vendor/SFML/doc/html/search/groups_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/mag.svg b/vendor/SFML/doc/html/search/mag.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/mag.svg rename to vendor/SFML/doc/html/search/mag.svg diff --git a/vendor/SFML-3.0.0/doc/html/search/mag_d.svg b/vendor/SFML/doc/html/search/mag_d.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/mag_d.svg rename to vendor/SFML/doc/html/search/mag_d.svg diff --git a/vendor/SFML-3.0.0/doc/html/search/mag_sel.svg b/vendor/SFML/doc/html/search/mag_sel.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/mag_sel.svg rename to vendor/SFML/doc/html/search/mag_sel.svg diff --git a/vendor/SFML-3.0.0/doc/html/search/mag_seld.svg b/vendor/SFML/doc/html/search/mag_seld.svg similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/mag_seld.svg rename to vendor/SFML/doc/html/search/mag_seld.svg diff --git a/vendor/SFML-3.0.0/doc/html/search/namespaces_0.js b/vendor/SFML/doc/html/search/namespaces_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/namespaces_0.js rename to vendor/SFML/doc/html/search/namespaces_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/pages_0.js b/vendor/SFML/doc/html/search/pages_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/pages_0.js rename to vendor/SFML/doc/html/search/pages_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/pages_1.js b/vendor/SFML/doc/html/search/pages_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/pages_1.js rename to vendor/SFML/doc/html/search/pages_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/related_0.js b/vendor/SFML/doc/html/search/related_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/related_0.js rename to vendor/SFML/doc/html/search/related_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/related_1.js b/vendor/SFML/doc/html/search/related_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/related_1.js rename to vendor/SFML/doc/html/search/related_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/related_2.js b/vendor/SFML/doc/html/search/related_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/related_2.js rename to vendor/SFML/doc/html/search/related_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/related_3.js b/vendor/SFML/doc/html/search/related_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/related_3.js rename to vendor/SFML/doc/html/search/related_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/related_4.js b/vendor/SFML/doc/html/search/related_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/related_4.js rename to vendor/SFML/doc/html/search/related_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/related_5.js b/vendor/SFML/doc/html/search/related_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/related_5.js rename to vendor/SFML/doc/html/search/related_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/related_6.js b/vendor/SFML/doc/html/search/related_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/related_6.js rename to vendor/SFML/doc/html/search/related_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/related_7.js b/vendor/SFML/doc/html/search/related_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/related_7.js rename to vendor/SFML/doc/html/search/related_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/search.css b/vendor/SFML/doc/html/search/search.css similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/search.css rename to vendor/SFML/doc/html/search/search.css diff --git a/vendor/SFML-3.0.0/doc/html/search/search.js b/vendor/SFML/doc/html/search/search.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/search.js rename to vendor/SFML/doc/html/search/search.js diff --git a/vendor/SFML-3.0.0/doc/html/search/searchdata.js b/vendor/SFML/doc/html/search/searchdata.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/searchdata.js rename to vendor/SFML/doc/html/search/searchdata.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_0.js b/vendor/SFML/doc/html/search/typedefs_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_0.js rename to vendor/SFML/doc/html/search/typedefs_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_1.js b/vendor/SFML/doc/html/search/typedefs_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_1.js rename to vendor/SFML/doc/html/search/typedefs_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_2.js b/vendor/SFML/doc/html/search/typedefs_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_2.js rename to vendor/SFML/doc/html/search/typedefs_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_3.js b/vendor/SFML/doc/html/search/typedefs_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_3.js rename to vendor/SFML/doc/html/search/typedefs_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_4.js b/vendor/SFML/doc/html/search/typedefs_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_4.js rename to vendor/SFML/doc/html/search/typedefs_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_5.js b/vendor/SFML/doc/html/search/typedefs_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_5.js rename to vendor/SFML/doc/html/search/typedefs_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_6.js b/vendor/SFML/doc/html/search/typedefs_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_6.js rename to vendor/SFML/doc/html/search/typedefs_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_7.js b/vendor/SFML/doc/html/search/typedefs_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_7.js rename to vendor/SFML/doc/html/search/typedefs_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_8.js b/vendor/SFML/doc/html/search/typedefs_8.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_8.js rename to vendor/SFML/doc/html/search/typedefs_8.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_9.js b/vendor/SFML/doc/html/search/typedefs_9.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_9.js rename to vendor/SFML/doc/html/search/typedefs_9.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_a.js b/vendor/SFML/doc/html/search/typedefs_a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_a.js rename to vendor/SFML/doc/html/search/typedefs_a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_b.js b/vendor/SFML/doc/html/search/typedefs_b.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_b.js rename to vendor/SFML/doc/html/search/typedefs_b.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_c.js b/vendor/SFML/doc/html/search/typedefs_c.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_c.js rename to vendor/SFML/doc/html/search/typedefs_c.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_d.js b/vendor/SFML/doc/html/search/typedefs_d.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_d.js rename to vendor/SFML/doc/html/search/typedefs_d.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_e.js b/vendor/SFML/doc/html/search/typedefs_e.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_e.js rename to vendor/SFML/doc/html/search/typedefs_e.js diff --git a/vendor/SFML-3.0.0/doc/html/search/typedefs_f.js b/vendor/SFML/doc/html/search/typedefs_f.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/typedefs_f.js rename to vendor/SFML/doc/html/search/typedefs_f.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_0.js b/vendor/SFML/doc/html/search/variables_0.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_0.js rename to vendor/SFML/doc/html/search/variables_0.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_1.js b/vendor/SFML/doc/html/search/variables_1.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_1.js rename to vendor/SFML/doc/html/search/variables_1.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_10.js b/vendor/SFML/doc/html/search/variables_10.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_10.js rename to vendor/SFML/doc/html/search/variables_10.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_11.js b/vendor/SFML/doc/html/search/variables_11.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_11.js rename to vendor/SFML/doc/html/search/variables_11.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_12.js b/vendor/SFML/doc/html/search/variables_12.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_12.js rename to vendor/SFML/doc/html/search/variables_12.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_13.js b/vendor/SFML/doc/html/search/variables_13.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_13.js rename to vendor/SFML/doc/html/search/variables_13.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_14.js b/vendor/SFML/doc/html/search/variables_14.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_14.js rename to vendor/SFML/doc/html/search/variables_14.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_15.js b/vendor/SFML/doc/html/search/variables_15.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_15.js rename to vendor/SFML/doc/html/search/variables_15.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_16.js b/vendor/SFML/doc/html/search/variables_16.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_16.js rename to vendor/SFML/doc/html/search/variables_16.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_2.js b/vendor/SFML/doc/html/search/variables_2.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_2.js rename to vendor/SFML/doc/html/search/variables_2.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_3.js b/vendor/SFML/doc/html/search/variables_3.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_3.js rename to vendor/SFML/doc/html/search/variables_3.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_4.js b/vendor/SFML/doc/html/search/variables_4.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_4.js rename to vendor/SFML/doc/html/search/variables_4.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_5.js b/vendor/SFML/doc/html/search/variables_5.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_5.js rename to vendor/SFML/doc/html/search/variables_5.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_6.js b/vendor/SFML/doc/html/search/variables_6.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_6.js rename to vendor/SFML/doc/html/search/variables_6.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_7.js b/vendor/SFML/doc/html/search/variables_7.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_7.js rename to vendor/SFML/doc/html/search/variables_7.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_8.js b/vendor/SFML/doc/html/search/variables_8.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_8.js rename to vendor/SFML/doc/html/search/variables_8.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_9.js b/vendor/SFML/doc/html/search/variables_9.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_9.js rename to vendor/SFML/doc/html/search/variables_9.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_a.js b/vendor/SFML/doc/html/search/variables_a.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_a.js rename to vendor/SFML/doc/html/search/variables_a.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_b.js b/vendor/SFML/doc/html/search/variables_b.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_b.js rename to vendor/SFML/doc/html/search/variables_b.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_c.js b/vendor/SFML/doc/html/search/variables_c.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_c.js rename to vendor/SFML/doc/html/search/variables_c.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_d.js b/vendor/SFML/doc/html/search/variables_d.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_d.js rename to vendor/SFML/doc/html/search/variables_d.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_e.js b/vendor/SFML/doc/html/search/variables_e.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_e.js rename to vendor/SFML/doc/html/search/variables_e.js diff --git a/vendor/SFML-3.0.0/doc/html/search/variables_f.js b/vendor/SFML/doc/html/search/variables_f.js similarity index 100% rename from vendor/SFML-3.0.0/doc/html/search/variables_f.js rename to vendor/SFML/doc/html/search/variables_f.js diff --git a/vendor/SFML-3.0.0/doc/html/searchOverrides.css b/vendor/SFML/doc/html/searchOverrides.css similarity index 100% rename from vendor/SFML-3.0.0/doc/html/searchOverrides.css rename to vendor/SFML/doc/html/searchOverrides.css diff --git a/vendor/SFML-3.0.0/doc/html/splitbar.png b/vendor/SFML/doc/html/splitbar.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/splitbar.png rename to vendor/SFML/doc/html/splitbar.png diff --git a/vendor/SFML-3.0.0/doc/html/splitbard.png b/vendor/SFML/doc/html/splitbard.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/splitbard.png rename to vendor/SFML/doc/html/splitbard.png diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1BlendMode-members.html b/vendor/SFML/doc/html/structsf_1_1BlendMode-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1BlendMode-members.html rename to vendor/SFML/doc/html/structsf_1_1BlendMode-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1BlendMode.html b/vendor/SFML/doc/html/structsf_1_1BlendMode.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1BlendMode.html rename to vendor/SFML/doc/html/structsf_1_1BlendMode.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1ContextSettings-members.html b/vendor/SFML/doc/html/structsf_1_1ContextSettings-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1ContextSettings-members.html rename to vendor/SFML/doc/html/structsf_1_1ContextSettings-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1ContextSettings.html b/vendor/SFML/doc/html/structsf_1_1ContextSettings.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1ContextSettings.html rename to vendor/SFML/doc/html/structsf_1_1ContextSettings.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1Closed.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1Closed.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1Closed.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1Closed.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1FocusGained.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1FocusGained.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1FocusGained.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1FocusGained.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1FocusLost.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1FocusLost.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1FocusLost.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1FocusLost.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickButtonPressed-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickButtonPressed-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickButtonPressed-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickButtonPressed-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickButtonPressed.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickButtonPressed.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickButtonPressed.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickButtonPressed.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickButtonReleased-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickButtonReleased-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickButtonReleased-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickButtonReleased-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickButtonReleased.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickButtonReleased.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickButtonReleased.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickButtonReleased.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickConnected-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickConnected-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickConnected-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickConnected-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickConnected.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickConnected.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickConnected.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickConnected.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickDisconnected-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickDisconnected-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickDisconnected-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickDisconnected-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickDisconnected.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickDisconnected.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickDisconnected.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickDisconnected.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickMoved-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickMoved-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickMoved-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickMoved-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickMoved.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickMoved.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1JoystickMoved.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1JoystickMoved.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1KeyPressed-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1KeyPressed-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1KeyPressed-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1KeyPressed-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1KeyPressed.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1KeyPressed.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1KeyPressed.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1KeyPressed.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1KeyReleased-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1KeyReleased-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1KeyReleased-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1KeyReleased-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1KeyReleased.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1KeyReleased.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1KeyReleased.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1KeyReleased.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseButtonPressed-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseButtonPressed-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseButtonPressed-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseButtonPressed-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseButtonPressed.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseButtonPressed.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseButtonPressed.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseButtonPressed.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseButtonReleased-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseButtonReleased-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseButtonReleased-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseButtonReleased-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseButtonReleased.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseButtonReleased.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseButtonReleased.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseButtonReleased.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseEntered.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseEntered.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseEntered.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseEntered.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseLeft.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseLeft.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseLeft.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseLeft.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseMoved-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseMoved-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseMoved-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseMoved-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseMoved.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseMoved.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseMoved.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseMoved.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseMovedRaw-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseMovedRaw-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseMovedRaw-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseMovedRaw-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseMovedRaw.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseMovedRaw.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseMovedRaw.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseMovedRaw.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseWheelScrolled-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseWheelScrolled-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseWheelScrolled-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseWheelScrolled-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseWheelScrolled.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1MouseWheelScrolled.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1MouseWheelScrolled.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1MouseWheelScrolled.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1Resized-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1Resized-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1Resized-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1Resized-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1Resized.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1Resized.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1Resized.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1Resized.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1SensorChanged-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1SensorChanged-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1SensorChanged-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1SensorChanged-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1SensorChanged.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1SensorChanged.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1SensorChanged.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1SensorChanged.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TextEntered-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1TextEntered-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TextEntered-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1TextEntered-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TextEntered.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1TextEntered.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TextEntered.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1TextEntered.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchBegan-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1TouchBegan-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchBegan-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1TouchBegan-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchBegan.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1TouchBegan.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchBegan.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1TouchBegan.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchEnded-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1TouchEnded-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchEnded-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1TouchEnded-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchEnded.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1TouchEnded.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchEnded.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1TouchEnded.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchMoved-members.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1TouchMoved-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchMoved-members.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1TouchMoved-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchMoved.html b/vendor/SFML/doc/html/structsf_1_1Event_1_1TouchMoved.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Event_1_1TouchMoved.html rename to vendor/SFML/doc/html/structsf_1_1Event_1_1TouchMoved.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Font_1_1Info-members.html b/vendor/SFML/doc/html/structsf_1_1Font_1_1Info-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Font_1_1Info-members.html rename to vendor/SFML/doc/html/structsf_1_1Font_1_1Info-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Font_1_1Info.html b/vendor/SFML/doc/html/structsf_1_1Font_1_1Info.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Font_1_1Info.html rename to vendor/SFML/doc/html/structsf_1_1Font_1_1Info.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Glyph-members.html b/vendor/SFML/doc/html/structsf_1_1Glyph-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Glyph-members.html rename to vendor/SFML/doc/html/structsf_1_1Glyph-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Glyph.html b/vendor/SFML/doc/html/structsf_1_1Glyph.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Glyph.html rename to vendor/SFML/doc/html/structsf_1_1Glyph.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Joystick_1_1Identification-members.html b/vendor/SFML/doc/html/structsf_1_1Joystick_1_1Identification-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Joystick_1_1Identification-members.html rename to vendor/SFML/doc/html/structsf_1_1Joystick_1_1Identification-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Joystick_1_1Identification.html b/vendor/SFML/doc/html/structsf_1_1Joystick_1_1Identification.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Joystick_1_1Identification.html rename to vendor/SFML/doc/html/structsf_1_1Joystick_1_1Identification.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Listener_1_1Cone-members.html b/vendor/SFML/doc/html/structsf_1_1Listener_1_1Cone-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Listener_1_1Cone-members.html rename to vendor/SFML/doc/html/structsf_1_1Listener_1_1Cone-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Listener_1_1Cone.html b/vendor/SFML/doc/html/structsf_1_1Listener_1_1Cone.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Listener_1_1Cone.html rename to vendor/SFML/doc/html/structsf_1_1Listener_1_1Cone.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Music_1_1Span-members.html b/vendor/SFML/doc/html/structsf_1_1Music_1_1Span-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Music_1_1Span-members.html rename to vendor/SFML/doc/html/structsf_1_1Music_1_1Span-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Music_1_1Span.html b/vendor/SFML/doc/html/structsf_1_1Music_1_1Span.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Music_1_1Span.html rename to vendor/SFML/doc/html/structsf_1_1Music_1_1Span.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1RenderStates-members.html b/vendor/SFML/doc/html/structsf_1_1RenderStates-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1RenderStates-members.html rename to vendor/SFML/doc/html/structsf_1_1RenderStates-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1RenderStates.html b/vendor/SFML/doc/html/structsf_1_1RenderStates.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1RenderStates.html rename to vendor/SFML/doc/html/structsf_1_1RenderStates.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Shader_1_1CurrentTextureType.html b/vendor/SFML/doc/html/structsf_1_1Shader_1_1CurrentTextureType.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Shader_1_1CurrentTextureType.html rename to vendor/SFML/doc/html/structsf_1_1Shader_1_1CurrentTextureType.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1SoundFileReader_1_1Info-members.html b/vendor/SFML/doc/html/structsf_1_1SoundFileReader_1_1Info-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1SoundFileReader_1_1Info-members.html rename to vendor/SFML/doc/html/structsf_1_1SoundFileReader_1_1Info-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1SoundFileReader_1_1Info.html b/vendor/SFML/doc/html/structsf_1_1SoundFileReader_1_1Info.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1SoundFileReader_1_1Info.html rename to vendor/SFML/doc/html/structsf_1_1SoundFileReader_1_1Info.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1SoundSource_1_1Cone-members.html b/vendor/SFML/doc/html/structsf_1_1SoundSource_1_1Cone-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1SoundSource_1_1Cone-members.html rename to vendor/SFML/doc/html/structsf_1_1SoundSource_1_1Cone-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1SoundSource_1_1Cone.html b/vendor/SFML/doc/html/structsf_1_1SoundSource_1_1Cone.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1SoundSource_1_1Cone.html rename to vendor/SFML/doc/html/structsf_1_1SoundSource_1_1Cone.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1SoundStream_1_1Chunk-members.html b/vendor/SFML/doc/html/structsf_1_1SoundStream_1_1Chunk-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1SoundStream_1_1Chunk-members.html rename to vendor/SFML/doc/html/structsf_1_1SoundStream_1_1Chunk-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1SoundStream_1_1Chunk.html b/vendor/SFML/doc/html/structsf_1_1SoundStream_1_1Chunk.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1SoundStream_1_1Chunk.html rename to vendor/SFML/doc/html/structsf_1_1SoundStream_1_1Chunk.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1StencilMode-members.html b/vendor/SFML/doc/html/structsf_1_1StencilMode-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1StencilMode-members.html rename to vendor/SFML/doc/html/structsf_1_1StencilMode-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1StencilMode.html b/vendor/SFML/doc/html/structsf_1_1StencilMode.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1StencilMode.html rename to vendor/SFML/doc/html/structsf_1_1StencilMode.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1StencilValue-members.html b/vendor/SFML/doc/html/structsf_1_1StencilValue-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1StencilValue-members.html rename to vendor/SFML/doc/html/structsf_1_1StencilValue-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1StencilValue.html b/vendor/SFML/doc/html/structsf_1_1StencilValue.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1StencilValue.html rename to vendor/SFML/doc/html/structsf_1_1StencilValue.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1SuspendAwareClock-members.html b/vendor/SFML/doc/html/structsf_1_1SuspendAwareClock-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1SuspendAwareClock-members.html rename to vendor/SFML/doc/html/structsf_1_1SuspendAwareClock-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1SuspendAwareClock.html b/vendor/SFML/doc/html/structsf_1_1SuspendAwareClock.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1SuspendAwareClock.html rename to vendor/SFML/doc/html/structsf_1_1SuspendAwareClock.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1U8StringCharTraits-members.html b/vendor/SFML/doc/html/structsf_1_1U8StringCharTraits-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1U8StringCharTraits-members.html rename to vendor/SFML/doc/html/structsf_1_1U8StringCharTraits-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1U8StringCharTraits.html b/vendor/SFML/doc/html/structsf_1_1U8StringCharTraits.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1U8StringCharTraits.html rename to vendor/SFML/doc/html/structsf_1_1U8StringCharTraits.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Vertex-members.html b/vendor/SFML/doc/html/structsf_1_1Vertex-members.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Vertex-members.html rename to vendor/SFML/doc/html/structsf_1_1Vertex-members.html diff --git a/vendor/SFML-3.0.0/doc/html/structsf_1_1Vertex.html b/vendor/SFML/doc/html/structsf_1_1Vertex.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/structsf_1_1Vertex.html rename to vendor/SFML/doc/html/structsf_1_1Vertex.html diff --git a/vendor/SFML-3.0.0/doc/html/sync_off.png b/vendor/SFML/doc/html/sync_off.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/sync_off.png rename to vendor/SFML/doc/html/sync_off.png diff --git a/vendor/SFML-3.0.0/doc/html/sync_on.png b/vendor/SFML/doc/html/sync_on.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/sync_on.png rename to vendor/SFML/doc/html/sync_on.png diff --git a/vendor/SFML-3.0.0/doc/html/tab_a.png b/vendor/SFML/doc/html/tab_a.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tab_a.png rename to vendor/SFML/doc/html/tab_a.png diff --git a/vendor/SFML-3.0.0/doc/html/tab_ad.png b/vendor/SFML/doc/html/tab_ad.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tab_ad.png rename to vendor/SFML/doc/html/tab_ad.png diff --git a/vendor/SFML-3.0.0/doc/html/tab_b.png b/vendor/SFML/doc/html/tab_b.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tab_b.png rename to vendor/SFML/doc/html/tab_b.png diff --git a/vendor/SFML-3.0.0/doc/html/tab_bd.png b/vendor/SFML/doc/html/tab_bd.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tab_bd.png rename to vendor/SFML/doc/html/tab_bd.png diff --git a/vendor/SFML-3.0.0/doc/html/tab_h.png b/vendor/SFML/doc/html/tab_h.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tab_h.png rename to vendor/SFML/doc/html/tab_h.png diff --git a/vendor/SFML-3.0.0/doc/html/tab_hd.png b/vendor/SFML/doc/html/tab_hd.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tab_hd.png rename to vendor/SFML/doc/html/tab_hd.png diff --git a/vendor/SFML-3.0.0/doc/html/tab_s.png b/vendor/SFML/doc/html/tab_s.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tab_s.png rename to vendor/SFML/doc/html/tab_s.png diff --git a/vendor/SFML-3.0.0/doc/html/tab_sd.png b/vendor/SFML/doc/html/tab_sd.png similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tab_sd.png rename to vendor/SFML/doc/html/tab_sd.png diff --git a/vendor/SFML-3.0.0/doc/html/tabs.css b/vendor/SFML/doc/html/tabs.css similarity index 100% rename from vendor/SFML-3.0.0/doc/html/tabs.css rename to vendor/SFML/doc/html/tabs.css diff --git a/vendor/SFML-3.0.0/doc/html/topics.html b/vendor/SFML/doc/html/topics.html similarity index 100% rename from vendor/SFML-3.0.0/doc/html/topics.html rename to vendor/SFML/doc/html/topics.html diff --git a/vendor/SFML-3.0.0/include/SFML/Audio.hpp b/vendor/SFML/include/SFML/Audio.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio.hpp rename to vendor/SFML/include/SFML/Audio.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/AudioResource.hpp b/vendor/SFML/include/SFML/Audio/AudioResource.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/AudioResource.hpp rename to vendor/SFML/include/SFML/Audio/AudioResource.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/Export.hpp b/vendor/SFML/include/SFML/Audio/Export.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/Export.hpp rename to vendor/SFML/include/SFML/Audio/Export.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/InputSoundFile.hpp b/vendor/SFML/include/SFML/Audio/InputSoundFile.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/InputSoundFile.hpp rename to vendor/SFML/include/SFML/Audio/InputSoundFile.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/Listener.hpp b/vendor/SFML/include/SFML/Audio/Listener.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/Listener.hpp rename to vendor/SFML/include/SFML/Audio/Listener.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/Music.hpp b/vendor/SFML/include/SFML/Audio/Music.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/Music.hpp rename to vendor/SFML/include/SFML/Audio/Music.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/OutputSoundFile.hpp b/vendor/SFML/include/SFML/Audio/OutputSoundFile.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/OutputSoundFile.hpp rename to vendor/SFML/include/SFML/Audio/OutputSoundFile.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/PlaybackDevice.hpp b/vendor/SFML/include/SFML/Audio/PlaybackDevice.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/PlaybackDevice.hpp rename to vendor/SFML/include/SFML/Audio/PlaybackDevice.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/Sound.hpp b/vendor/SFML/include/SFML/Audio/Sound.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/Sound.hpp rename to vendor/SFML/include/SFML/Audio/Sound.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundBuffer.hpp b/vendor/SFML/include/SFML/Audio/SoundBuffer.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundBuffer.hpp rename to vendor/SFML/include/SFML/Audio/SoundBuffer.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundBufferRecorder.hpp b/vendor/SFML/include/SFML/Audio/SoundBufferRecorder.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundBufferRecorder.hpp rename to vendor/SFML/include/SFML/Audio/SoundBufferRecorder.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundChannel.hpp b/vendor/SFML/include/SFML/Audio/SoundChannel.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundChannel.hpp rename to vendor/SFML/include/SFML/Audio/SoundChannel.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundFileFactory.hpp b/vendor/SFML/include/SFML/Audio/SoundFileFactory.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundFileFactory.hpp rename to vendor/SFML/include/SFML/Audio/SoundFileFactory.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundFileFactory.inl b/vendor/SFML/include/SFML/Audio/SoundFileFactory.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundFileFactory.inl rename to vendor/SFML/include/SFML/Audio/SoundFileFactory.inl diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundFileReader.hpp b/vendor/SFML/include/SFML/Audio/SoundFileReader.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundFileReader.hpp rename to vendor/SFML/include/SFML/Audio/SoundFileReader.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundFileWriter.hpp b/vendor/SFML/include/SFML/Audio/SoundFileWriter.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundFileWriter.hpp rename to vendor/SFML/include/SFML/Audio/SoundFileWriter.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundRecorder.hpp b/vendor/SFML/include/SFML/Audio/SoundRecorder.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundRecorder.hpp rename to vendor/SFML/include/SFML/Audio/SoundRecorder.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundSource.hpp b/vendor/SFML/include/SFML/Audio/SoundSource.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundSource.hpp rename to vendor/SFML/include/SFML/Audio/SoundSource.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Audio/SoundStream.hpp b/vendor/SFML/include/SFML/Audio/SoundStream.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Audio/SoundStream.hpp rename to vendor/SFML/include/SFML/Audio/SoundStream.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Config.hpp b/vendor/SFML/include/SFML/Config.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Config.hpp rename to vendor/SFML/include/SFML/Config.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/GpuPreference.hpp b/vendor/SFML/include/SFML/GpuPreference.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/GpuPreference.hpp rename to vendor/SFML/include/SFML/GpuPreference.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics.hpp b/vendor/SFML/include/SFML/Graphics.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics.hpp rename to vendor/SFML/include/SFML/Graphics.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/BlendMode.hpp b/vendor/SFML/include/SFML/Graphics/BlendMode.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/BlendMode.hpp rename to vendor/SFML/include/SFML/Graphics/BlendMode.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/CircleShape.hpp b/vendor/SFML/include/SFML/Graphics/CircleShape.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/CircleShape.hpp rename to vendor/SFML/include/SFML/Graphics/CircleShape.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Color.hpp b/vendor/SFML/include/SFML/Graphics/Color.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Color.hpp rename to vendor/SFML/include/SFML/Graphics/Color.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Color.inl b/vendor/SFML/include/SFML/Graphics/Color.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Color.inl rename to vendor/SFML/include/SFML/Graphics/Color.inl diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/ConvexShape.hpp b/vendor/SFML/include/SFML/Graphics/ConvexShape.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/ConvexShape.hpp rename to vendor/SFML/include/SFML/Graphics/ConvexShape.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/CoordinateType.hpp b/vendor/SFML/include/SFML/Graphics/CoordinateType.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/CoordinateType.hpp rename to vendor/SFML/include/SFML/Graphics/CoordinateType.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Drawable.hpp b/vendor/SFML/include/SFML/Graphics/Drawable.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Drawable.hpp rename to vendor/SFML/include/SFML/Graphics/Drawable.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Export.hpp b/vendor/SFML/include/SFML/Graphics/Export.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Export.hpp rename to vendor/SFML/include/SFML/Graphics/Export.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Font.hpp b/vendor/SFML/include/SFML/Graphics/Font.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Font.hpp rename to vendor/SFML/include/SFML/Graphics/Font.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Glsl.hpp b/vendor/SFML/include/SFML/Graphics/Glsl.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Glsl.hpp rename to vendor/SFML/include/SFML/Graphics/Glsl.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Glsl.inl b/vendor/SFML/include/SFML/Graphics/Glsl.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Glsl.inl rename to vendor/SFML/include/SFML/Graphics/Glsl.inl diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Glyph.hpp b/vendor/SFML/include/SFML/Graphics/Glyph.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Glyph.hpp rename to vendor/SFML/include/SFML/Graphics/Glyph.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Image.hpp b/vendor/SFML/include/SFML/Graphics/Image.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Image.hpp rename to vendor/SFML/include/SFML/Graphics/Image.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/PrimitiveType.hpp b/vendor/SFML/include/SFML/Graphics/PrimitiveType.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/PrimitiveType.hpp rename to vendor/SFML/include/SFML/Graphics/PrimitiveType.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Rect.hpp b/vendor/SFML/include/SFML/Graphics/Rect.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Rect.hpp rename to vendor/SFML/include/SFML/Graphics/Rect.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Rect.inl b/vendor/SFML/include/SFML/Graphics/Rect.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Rect.inl rename to vendor/SFML/include/SFML/Graphics/Rect.inl diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/RectangleShape.hpp b/vendor/SFML/include/SFML/Graphics/RectangleShape.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/RectangleShape.hpp rename to vendor/SFML/include/SFML/Graphics/RectangleShape.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/RenderStates.hpp b/vendor/SFML/include/SFML/Graphics/RenderStates.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/RenderStates.hpp rename to vendor/SFML/include/SFML/Graphics/RenderStates.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/RenderTarget.hpp b/vendor/SFML/include/SFML/Graphics/RenderTarget.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/RenderTarget.hpp rename to vendor/SFML/include/SFML/Graphics/RenderTarget.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/RenderTexture.hpp b/vendor/SFML/include/SFML/Graphics/RenderTexture.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/RenderTexture.hpp rename to vendor/SFML/include/SFML/Graphics/RenderTexture.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/RenderWindow.hpp b/vendor/SFML/include/SFML/Graphics/RenderWindow.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/RenderWindow.hpp rename to vendor/SFML/include/SFML/Graphics/RenderWindow.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Shader.hpp b/vendor/SFML/include/SFML/Graphics/Shader.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Shader.hpp rename to vendor/SFML/include/SFML/Graphics/Shader.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Shape.hpp b/vendor/SFML/include/SFML/Graphics/Shape.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Shape.hpp rename to vendor/SFML/include/SFML/Graphics/Shape.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Sprite.hpp b/vendor/SFML/include/SFML/Graphics/Sprite.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Sprite.hpp rename to vendor/SFML/include/SFML/Graphics/Sprite.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/StencilMode.hpp b/vendor/SFML/include/SFML/Graphics/StencilMode.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/StencilMode.hpp rename to vendor/SFML/include/SFML/Graphics/StencilMode.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Text.hpp b/vendor/SFML/include/SFML/Graphics/Text.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Text.hpp rename to vendor/SFML/include/SFML/Graphics/Text.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Texture.hpp b/vendor/SFML/include/SFML/Graphics/Texture.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Texture.hpp rename to vendor/SFML/include/SFML/Graphics/Texture.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Transform.hpp b/vendor/SFML/include/SFML/Graphics/Transform.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Transform.hpp rename to vendor/SFML/include/SFML/Graphics/Transform.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Transform.inl b/vendor/SFML/include/SFML/Graphics/Transform.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Transform.inl rename to vendor/SFML/include/SFML/Graphics/Transform.inl diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Transformable.hpp b/vendor/SFML/include/SFML/Graphics/Transformable.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Transformable.hpp rename to vendor/SFML/include/SFML/Graphics/Transformable.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/Vertex.hpp b/vendor/SFML/include/SFML/Graphics/Vertex.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/Vertex.hpp rename to vendor/SFML/include/SFML/Graphics/Vertex.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/VertexArray.hpp b/vendor/SFML/include/SFML/Graphics/VertexArray.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/VertexArray.hpp rename to vendor/SFML/include/SFML/Graphics/VertexArray.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/VertexBuffer.hpp b/vendor/SFML/include/SFML/Graphics/VertexBuffer.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/VertexBuffer.hpp rename to vendor/SFML/include/SFML/Graphics/VertexBuffer.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Graphics/View.hpp b/vendor/SFML/include/SFML/Graphics/View.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Graphics/View.hpp rename to vendor/SFML/include/SFML/Graphics/View.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Main.hpp b/vendor/SFML/include/SFML/Main.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Main.hpp rename to vendor/SFML/include/SFML/Main.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network.hpp b/vendor/SFML/include/SFML/Network.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network.hpp rename to vendor/SFML/include/SFML/Network.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/Export.hpp b/vendor/SFML/include/SFML/Network/Export.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/Export.hpp rename to vendor/SFML/include/SFML/Network/Export.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/Ftp.hpp b/vendor/SFML/include/SFML/Network/Ftp.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/Ftp.hpp rename to vendor/SFML/include/SFML/Network/Ftp.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/Http.hpp b/vendor/SFML/include/SFML/Network/Http.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/Http.hpp rename to vendor/SFML/include/SFML/Network/Http.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/IpAddress.hpp b/vendor/SFML/include/SFML/Network/IpAddress.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/IpAddress.hpp rename to vendor/SFML/include/SFML/Network/IpAddress.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/Packet.hpp b/vendor/SFML/include/SFML/Network/Packet.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/Packet.hpp rename to vendor/SFML/include/SFML/Network/Packet.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/Socket.hpp b/vendor/SFML/include/SFML/Network/Socket.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/Socket.hpp rename to vendor/SFML/include/SFML/Network/Socket.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/SocketHandle.hpp b/vendor/SFML/include/SFML/Network/SocketHandle.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/SocketHandle.hpp rename to vendor/SFML/include/SFML/Network/SocketHandle.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/SocketSelector.hpp b/vendor/SFML/include/SFML/Network/SocketSelector.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/SocketSelector.hpp rename to vendor/SFML/include/SFML/Network/SocketSelector.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/TcpListener.hpp b/vendor/SFML/include/SFML/Network/TcpListener.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/TcpListener.hpp rename to vendor/SFML/include/SFML/Network/TcpListener.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/TcpSocket.hpp b/vendor/SFML/include/SFML/Network/TcpSocket.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/TcpSocket.hpp rename to vendor/SFML/include/SFML/Network/TcpSocket.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Network/UdpSocket.hpp b/vendor/SFML/include/SFML/Network/UdpSocket.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Network/UdpSocket.hpp rename to vendor/SFML/include/SFML/Network/UdpSocket.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/OpenGL.hpp b/vendor/SFML/include/SFML/OpenGL.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/OpenGL.hpp rename to vendor/SFML/include/SFML/OpenGL.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System.hpp b/vendor/SFML/include/SFML/System.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System.hpp rename to vendor/SFML/include/SFML/System.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Angle.hpp b/vendor/SFML/include/SFML/System/Angle.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Angle.hpp rename to vendor/SFML/include/SFML/System/Angle.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Angle.inl b/vendor/SFML/include/SFML/System/Angle.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Angle.inl rename to vendor/SFML/include/SFML/System/Angle.inl diff --git a/vendor/SFML-3.0.0/include/SFML/System/Clock.hpp b/vendor/SFML/include/SFML/System/Clock.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Clock.hpp rename to vendor/SFML/include/SFML/System/Clock.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Err.hpp b/vendor/SFML/include/SFML/System/Err.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Err.hpp rename to vendor/SFML/include/SFML/System/Err.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Exception.hpp b/vendor/SFML/include/SFML/System/Exception.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Exception.hpp rename to vendor/SFML/include/SFML/System/Exception.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Export.hpp b/vendor/SFML/include/SFML/System/Export.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Export.hpp rename to vendor/SFML/include/SFML/System/Export.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/FileInputStream.hpp b/vendor/SFML/include/SFML/System/FileInputStream.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/FileInputStream.hpp rename to vendor/SFML/include/SFML/System/FileInputStream.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/InputStream.hpp b/vendor/SFML/include/SFML/System/InputStream.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/InputStream.hpp rename to vendor/SFML/include/SFML/System/InputStream.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/MemoryInputStream.hpp b/vendor/SFML/include/SFML/System/MemoryInputStream.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/MemoryInputStream.hpp rename to vendor/SFML/include/SFML/System/MemoryInputStream.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/NativeActivity.hpp b/vendor/SFML/include/SFML/System/NativeActivity.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/NativeActivity.hpp rename to vendor/SFML/include/SFML/System/NativeActivity.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Sleep.hpp b/vendor/SFML/include/SFML/System/Sleep.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Sleep.hpp rename to vendor/SFML/include/SFML/System/Sleep.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/String.hpp b/vendor/SFML/include/SFML/System/String.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/String.hpp rename to vendor/SFML/include/SFML/System/String.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/String.inl b/vendor/SFML/include/SFML/System/String.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/String.inl rename to vendor/SFML/include/SFML/System/String.inl diff --git a/vendor/SFML-3.0.0/include/SFML/System/SuspendAwareClock.hpp b/vendor/SFML/include/SFML/System/SuspendAwareClock.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/SuspendAwareClock.hpp rename to vendor/SFML/include/SFML/System/SuspendAwareClock.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Time.hpp b/vendor/SFML/include/SFML/System/Time.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Time.hpp rename to vendor/SFML/include/SFML/System/Time.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Time.inl b/vendor/SFML/include/SFML/System/Time.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Time.inl rename to vendor/SFML/include/SFML/System/Time.inl diff --git a/vendor/SFML-3.0.0/include/SFML/System/Utf.hpp b/vendor/SFML/include/SFML/System/Utf.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Utf.hpp rename to vendor/SFML/include/SFML/System/Utf.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Utf.inl b/vendor/SFML/include/SFML/System/Utf.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Utf.inl rename to vendor/SFML/include/SFML/System/Utf.inl diff --git a/vendor/SFML-3.0.0/include/SFML/System/Vector2.hpp b/vendor/SFML/include/SFML/System/Vector2.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Vector2.hpp rename to vendor/SFML/include/SFML/System/Vector2.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Vector2.inl b/vendor/SFML/include/SFML/System/Vector2.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Vector2.inl rename to vendor/SFML/include/SFML/System/Vector2.inl diff --git a/vendor/SFML-3.0.0/include/SFML/System/Vector3.hpp b/vendor/SFML/include/SFML/System/Vector3.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Vector3.hpp rename to vendor/SFML/include/SFML/System/Vector3.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/System/Vector3.inl b/vendor/SFML/include/SFML/System/Vector3.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/System/Vector3.inl rename to vendor/SFML/include/SFML/System/Vector3.inl diff --git a/vendor/SFML-3.0.0/include/SFML/Window.hpp b/vendor/SFML/include/SFML/Window.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window.hpp rename to vendor/SFML/include/SFML/Window.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Clipboard.hpp b/vendor/SFML/include/SFML/Window/Clipboard.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Clipboard.hpp rename to vendor/SFML/include/SFML/Window/Clipboard.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Context.hpp b/vendor/SFML/include/SFML/Window/Context.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Context.hpp rename to vendor/SFML/include/SFML/Window/Context.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/ContextSettings.hpp b/vendor/SFML/include/SFML/Window/ContextSettings.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/ContextSettings.hpp rename to vendor/SFML/include/SFML/Window/ContextSettings.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Cursor.hpp b/vendor/SFML/include/SFML/Window/Cursor.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Cursor.hpp rename to vendor/SFML/include/SFML/Window/Cursor.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Event.hpp b/vendor/SFML/include/SFML/Window/Event.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Event.hpp rename to vendor/SFML/include/SFML/Window/Event.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Event.inl b/vendor/SFML/include/SFML/Window/Event.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Event.inl rename to vendor/SFML/include/SFML/Window/Event.inl diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Export.hpp b/vendor/SFML/include/SFML/Window/Export.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Export.hpp rename to vendor/SFML/include/SFML/Window/Export.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/GlResource.hpp b/vendor/SFML/include/SFML/Window/GlResource.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/GlResource.hpp rename to vendor/SFML/include/SFML/Window/GlResource.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Joystick.hpp b/vendor/SFML/include/SFML/Window/Joystick.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Joystick.hpp rename to vendor/SFML/include/SFML/Window/Joystick.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Keyboard.hpp b/vendor/SFML/include/SFML/Window/Keyboard.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Keyboard.hpp rename to vendor/SFML/include/SFML/Window/Keyboard.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Mouse.hpp b/vendor/SFML/include/SFML/Window/Mouse.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Mouse.hpp rename to vendor/SFML/include/SFML/Window/Mouse.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Sensor.hpp b/vendor/SFML/include/SFML/Window/Sensor.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Sensor.hpp rename to vendor/SFML/include/SFML/Window/Sensor.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Touch.hpp b/vendor/SFML/include/SFML/Window/Touch.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Touch.hpp rename to vendor/SFML/include/SFML/Window/Touch.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/VideoMode.hpp b/vendor/SFML/include/SFML/Window/VideoMode.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/VideoMode.hpp rename to vendor/SFML/include/SFML/Window/VideoMode.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Vulkan.hpp b/vendor/SFML/include/SFML/Window/Vulkan.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Vulkan.hpp rename to vendor/SFML/include/SFML/Window/Vulkan.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/Window.hpp b/vendor/SFML/include/SFML/Window/Window.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/Window.hpp rename to vendor/SFML/include/SFML/Window/Window.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/WindowBase.hpp b/vendor/SFML/include/SFML/Window/WindowBase.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/WindowBase.hpp rename to vendor/SFML/include/SFML/Window/WindowBase.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/WindowBase.inl b/vendor/SFML/include/SFML/Window/WindowBase.inl similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/WindowBase.inl rename to vendor/SFML/include/SFML/Window/WindowBase.inl diff --git a/vendor/SFML-3.0.0/include/SFML/Window/WindowEnums.hpp b/vendor/SFML/include/SFML/Window/WindowEnums.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/WindowEnums.hpp rename to vendor/SFML/include/SFML/Window/WindowEnums.hpp diff --git a/vendor/SFML-3.0.0/include/SFML/Window/WindowHandle.hpp b/vendor/SFML/include/SFML/Window/WindowHandle.hpp similarity index 100% rename from vendor/SFML-3.0.0/include/SFML/Window/WindowHandle.hpp rename to vendor/SFML/include/SFML/Window/WindowHandle.hpp diff --git a/vendor/SFML/lib/Debug/FLACd.lib b/vendor/SFML/lib/Debug/FLACd.lib new file mode 100644 index 0000000..8e6516d Binary files /dev/null and b/vendor/SFML/lib/Debug/FLACd.lib differ diff --git a/vendor/SFML-3.0.0/lib/freetyped.lib b/vendor/SFML/lib/Debug/freetyped.lib similarity index 61% rename from vendor/SFML-3.0.0/lib/freetyped.lib rename to vendor/SFML/lib/Debug/freetyped.lib index 77ba149..b460f5e 100644 Binary files a/vendor/SFML-3.0.0/lib/freetyped.lib and b/vendor/SFML/lib/Debug/freetyped.lib differ diff --git a/vendor/SFML/lib/Debug/oggd.lib b/vendor/SFML/lib/Debug/oggd.lib new file mode 100644 index 0000000..71e4bde Binary files /dev/null and b/vendor/SFML/lib/Debug/oggd.lib differ diff --git a/vendor/SFML-3.0.0/lib/sfml-audio-s-d.lib b/vendor/SFML/lib/Debug/sfml-audio-s-d.lib similarity index 53% rename from vendor/SFML-3.0.0/lib/sfml-audio-s-d.lib rename to vendor/SFML/lib/Debug/sfml-audio-s-d.lib index dd0e425..884b539 100644 Binary files a/vendor/SFML-3.0.0/lib/sfml-audio-s-d.lib and b/vendor/SFML/lib/Debug/sfml-audio-s-d.lib differ diff --git a/vendor/SFML-3.0.0/lib/libsfml-audio-s-d.a b/vendor/SFML/lib/Debug/sfml-graphics-s-d.lib similarity index 55% rename from vendor/SFML-3.0.0/lib/libsfml-audio-s-d.a rename to vendor/SFML/lib/Debug/sfml-graphics-s-d.lib index 0a37479..844a097 100644 Binary files a/vendor/SFML-3.0.0/lib/libsfml-audio-s-d.a and b/vendor/SFML/lib/Debug/sfml-graphics-s-d.lib differ diff --git a/vendor/SFML/lib/Debug/sfml-main-d.lib b/vendor/SFML/lib/Debug/sfml-main-d.lib new file mode 100644 index 0000000..6aae5df Binary files /dev/null and b/vendor/SFML/lib/Debug/sfml-main-d.lib differ diff --git a/vendor/SFML/lib/Debug/sfml-network-s-d.lib b/vendor/SFML/lib/Debug/sfml-network-s-d.lib new file mode 100644 index 0000000..331fb2e Binary files /dev/null and b/vendor/SFML/lib/Debug/sfml-network-s-d.lib differ diff --git a/vendor/SFML/lib/Debug/sfml-system-s-d.lib b/vendor/SFML/lib/Debug/sfml-system-s-d.lib new file mode 100644 index 0000000..211c958 Binary files /dev/null and b/vendor/SFML/lib/Debug/sfml-system-s-d.lib differ diff --git a/vendor/SFML/lib/Debug/sfml-window-s-d.lib b/vendor/SFML/lib/Debug/sfml-window-s-d.lib new file mode 100644 index 0000000..6bb42ce Binary files /dev/null and b/vendor/SFML/lib/Debug/sfml-window-s-d.lib differ diff --git a/vendor/SFML-3.0.0/lib/vorbisd.lib b/vendor/SFML/lib/Debug/vorbisd.lib similarity index 74% rename from vendor/SFML-3.0.0/lib/vorbisd.lib rename to vendor/SFML/lib/Debug/vorbisd.lib index c1ac4ed..57ef6f8 100644 Binary files a/vendor/SFML-3.0.0/lib/vorbisd.lib and b/vendor/SFML/lib/Debug/vorbisd.lib differ diff --git a/vendor/SFML-3.0.0/lib/vorbisencd.lib b/vendor/SFML/lib/Debug/vorbisencd.lib similarity index 91% rename from vendor/SFML-3.0.0/lib/vorbisencd.lib rename to vendor/SFML/lib/Debug/vorbisencd.lib index c745fa7..a9bdbf7 100644 Binary files a/vendor/SFML-3.0.0/lib/vorbisencd.lib and b/vendor/SFML/lib/Debug/vorbisencd.lib differ diff --git a/vendor/SFML-3.0.0/lib/vorbisfiled.lib b/vendor/SFML/lib/Debug/vorbisfiled.lib similarity index 51% rename from vendor/SFML-3.0.0/lib/vorbisfiled.lib rename to vendor/SFML/lib/Debug/vorbisfiled.lib index 3ae5df0..d9a442e 100644 Binary files a/vendor/SFML-3.0.0/lib/vorbisfiled.lib and b/vendor/SFML/lib/Debug/vorbisfiled.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/FLAC.lib b/vendor/SFML/lib/MinSizeRel/FLAC.lib new file mode 100644 index 0000000..f63b67c Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/FLAC.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/freetype.lib b/vendor/SFML/lib/MinSizeRel/freetype.lib new file mode 100644 index 0000000..107bbe0 Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/freetype.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/ogg.lib b/vendor/SFML/lib/MinSizeRel/ogg.lib new file mode 100644 index 0000000..5a46c20 Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/ogg.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/sfml-audio-s.lib b/vendor/SFML/lib/MinSizeRel/sfml-audio-s.lib new file mode 100644 index 0000000..963f8df Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/sfml-audio-s.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/sfml-graphics-s.lib b/vendor/SFML/lib/MinSizeRel/sfml-graphics-s.lib new file mode 100644 index 0000000..e11de0c Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/sfml-graphics-s.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/sfml-main.lib b/vendor/SFML/lib/MinSizeRel/sfml-main.lib new file mode 100644 index 0000000..e44d0df Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/sfml-main.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/sfml-network-s.lib b/vendor/SFML/lib/MinSizeRel/sfml-network-s.lib new file mode 100644 index 0000000..b3c7d4b Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/sfml-network-s.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/sfml-system-s.lib b/vendor/SFML/lib/MinSizeRel/sfml-system-s.lib new file mode 100644 index 0000000..e3986df Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/sfml-system-s.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/sfml-window-s.lib b/vendor/SFML/lib/MinSizeRel/sfml-window-s.lib new file mode 100644 index 0000000..c70c562 Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/sfml-window-s.lib differ diff --git a/vendor/SFML-3.0.0/lib/vorbis.lib b/vendor/SFML/lib/MinSizeRel/vorbis.lib similarity index 62% rename from vendor/SFML-3.0.0/lib/vorbis.lib rename to vendor/SFML/lib/MinSizeRel/vorbis.lib index c1cb15d..668c27d 100644 Binary files a/vendor/SFML-3.0.0/lib/vorbis.lib and b/vendor/SFML/lib/MinSizeRel/vorbis.lib differ diff --git a/vendor/SFML-3.0.0/lib/vorbisenc.lib b/vendor/SFML/lib/MinSizeRel/vorbisenc.lib similarity index 87% rename from vendor/SFML-3.0.0/lib/vorbisenc.lib rename to vendor/SFML/lib/MinSizeRel/vorbisenc.lib index b099e1c..57f0e36 100644 Binary files a/vendor/SFML-3.0.0/lib/vorbisenc.lib and b/vendor/SFML/lib/MinSizeRel/vorbisenc.lib differ diff --git a/vendor/SFML/lib/MinSizeRel/vorbisfile.lib b/vendor/SFML/lib/MinSizeRel/vorbisfile.lib new file mode 100644 index 0000000..c0f1364 Binary files /dev/null and b/vendor/SFML/lib/MinSizeRel/vorbisfile.lib differ diff --git a/vendor/SFML-3.0.0/lib/cmake/FLAC/flac-config-version.cmake b/vendor/SFML/lib/cmake/FLAC/flac-config-version.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/FLAC/flac-config-version.cmake rename to vendor/SFML/lib/cmake/FLAC/flac-config-version.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/FLAC/flac-config.cmake b/vendor/SFML/lib/cmake/FLAC/flac-config.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/FLAC/flac-config.cmake rename to vendor/SFML/lib/cmake/FLAC/flac-config.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/FLAC/targets-debug.cmake b/vendor/SFML/lib/cmake/FLAC/targets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/FLAC/targets-debug.cmake rename to vendor/SFML/lib/cmake/FLAC/targets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/FLAC/targets-release.cmake b/vendor/SFML/lib/cmake/FLAC/targets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/FLAC/targets-release.cmake rename to vendor/SFML/lib/cmake/FLAC/targets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/FLAC/targets.cmake b/vendor/SFML/lib/cmake/FLAC/targets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/FLAC/targets.cmake rename to vendor/SFML/lib/cmake/FLAC/targets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Ogg/OggConfig.cmake b/vendor/SFML/lib/cmake/Ogg/OggConfig.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Ogg/OggConfig.cmake rename to vendor/SFML/lib/cmake/Ogg/OggConfig.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Ogg/OggConfigVersion.cmake b/vendor/SFML/lib/cmake/Ogg/OggConfigVersion.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Ogg/OggConfigVersion.cmake rename to vendor/SFML/lib/cmake/Ogg/OggConfigVersion.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Ogg/OggTargets-debug.cmake b/vendor/SFML/lib/cmake/Ogg/OggTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Ogg/OggTargets-debug.cmake rename to vendor/SFML/lib/cmake/Ogg/OggTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Ogg/OggTargets-release.cmake b/vendor/SFML/lib/cmake/Ogg/OggTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Ogg/OggTargets-release.cmake rename to vendor/SFML/lib/cmake/Ogg/OggTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Ogg/OggTargets.cmake b/vendor/SFML/lib/cmake/Ogg/OggTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Ogg/OggTargets.cmake rename to vendor/SFML/lib/cmake/Ogg/OggTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/FindDRM.cmake b/vendor/SFML/lib/cmake/SFML/FindDRM.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/FindDRM.cmake rename to vendor/SFML/lib/cmake/SFML/FindDRM.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/FindEGL.cmake b/vendor/SFML/lib/cmake/SFML/FindEGL.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/FindEGL.cmake rename to vendor/SFML/lib/cmake/SFML/FindEGL.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/FindFLAC.cmake b/vendor/SFML/lib/cmake/SFML/FindFLAC.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/FindFLAC.cmake rename to vendor/SFML/lib/cmake/SFML/FindFLAC.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/FindFreetype.cmake b/vendor/SFML/lib/cmake/SFML/FindFreetype.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/FindFreetype.cmake rename to vendor/SFML/lib/cmake/SFML/FindFreetype.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/FindGBM.cmake b/vendor/SFML/lib/cmake/SFML/FindGBM.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/FindGBM.cmake rename to vendor/SFML/lib/cmake/SFML/FindGBM.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/FindGLES.cmake b/vendor/SFML/lib/cmake/SFML/FindGLES.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/FindGLES.cmake rename to vendor/SFML/lib/cmake/SFML/FindGLES.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/FindUDev.cmake b/vendor/SFML/lib/cmake/SFML/FindUDev.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/FindUDev.cmake rename to vendor/SFML/lib/cmake/SFML/FindUDev.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/FindVorbis.cmake b/vendor/SFML/lib/cmake/SFML/FindVorbis.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/FindVorbis.cmake rename to vendor/SFML/lib/cmake/SFML/FindVorbis.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioDependencies.cmake b/vendor/SFML/lib/cmake/SFML/SFMLAudioDependencies.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioDependencies.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLAudioDependencies.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioSharedTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLAudioSharedTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioSharedTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLAudioSharedTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioSharedTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLAudioSharedTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioSharedTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLAudioSharedTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioSharedTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLAudioSharedTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioSharedTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLAudioSharedTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioStaticTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLAudioStaticTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioStaticTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLAudioStaticTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioStaticTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLAudioStaticTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioStaticTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLAudioStaticTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioStaticTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLAudioStaticTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLAudioStaticTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLAudioStaticTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLConfig.cmake b/vendor/SFML/lib/cmake/SFML/SFMLConfig.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLConfig.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLConfig.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLConfigVersion.cmake b/vendor/SFML/lib/cmake/SFML/SFMLConfigVersion.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLConfigVersion.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLConfigVersion.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsDependencies.cmake b/vendor/SFML/lib/cmake/SFML/SFMLGraphicsDependencies.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsDependencies.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLGraphicsDependencies.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsSharedTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLGraphicsSharedTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsSharedTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLGraphicsSharedTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsSharedTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLGraphicsSharedTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsSharedTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLGraphicsSharedTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsSharedTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLGraphicsSharedTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsSharedTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLGraphicsSharedTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsStaticTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLGraphicsStaticTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsStaticTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLGraphicsStaticTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsStaticTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLGraphicsStaticTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsStaticTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLGraphicsStaticTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsStaticTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLGraphicsStaticTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLGraphicsStaticTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLGraphicsStaticTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainSharedTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLMainSharedTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainSharedTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLMainSharedTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainSharedTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLMainSharedTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainSharedTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLMainSharedTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainSharedTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLMainSharedTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainSharedTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLMainSharedTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainStaticTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLMainStaticTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainStaticTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLMainStaticTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainStaticTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLMainStaticTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainStaticTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLMainStaticTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainStaticTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLMainStaticTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLMainStaticTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLMainStaticTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkSharedTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLNetworkSharedTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkSharedTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLNetworkSharedTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkSharedTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLNetworkSharedTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkSharedTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLNetworkSharedTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkSharedTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLNetworkSharedTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkSharedTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLNetworkSharedTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkStaticTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLNetworkStaticTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkStaticTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLNetworkStaticTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkStaticTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLNetworkStaticTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkStaticTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLNetworkStaticTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkStaticTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLNetworkStaticTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLNetworkStaticTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLNetworkStaticTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemDependencies.cmake b/vendor/SFML/lib/cmake/SFML/SFMLSystemDependencies.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemDependencies.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLSystemDependencies.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemSharedTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLSystemSharedTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemSharedTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLSystemSharedTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemSharedTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLSystemSharedTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemSharedTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLSystemSharedTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemSharedTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLSystemSharedTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemSharedTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLSystemSharedTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemStaticTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLSystemStaticTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemStaticTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLSystemStaticTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemStaticTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLSystemStaticTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemStaticTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLSystemStaticTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemStaticTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLSystemStaticTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLSystemStaticTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLSystemStaticTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowDependencies.cmake b/vendor/SFML/lib/cmake/SFML/SFMLWindowDependencies.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowDependencies.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLWindowDependencies.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowSharedTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLWindowSharedTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowSharedTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLWindowSharedTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowSharedTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLWindowSharedTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowSharedTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLWindowSharedTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowSharedTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLWindowSharedTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowSharedTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLWindowSharedTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowStaticTargets-debug.cmake b/vendor/SFML/lib/cmake/SFML/SFMLWindowStaticTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowStaticTargets-debug.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLWindowStaticTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowStaticTargets-release.cmake b/vendor/SFML/lib/cmake/SFML/SFMLWindowStaticTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowStaticTargets-release.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLWindowStaticTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowStaticTargets.cmake b/vendor/SFML/lib/cmake/SFML/SFMLWindowStaticTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/SFML/SFMLWindowStaticTargets.cmake rename to vendor/SFML/lib/cmake/SFML/SFMLWindowStaticTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisConfig.cmake b/vendor/SFML/lib/cmake/Vorbis/VorbisConfig.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisConfig.cmake rename to vendor/SFML/lib/cmake/Vorbis/VorbisConfig.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisConfigVersion.cmake b/vendor/SFML/lib/cmake/Vorbis/VorbisConfigVersion.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisConfigVersion.cmake rename to vendor/SFML/lib/cmake/Vorbis/VorbisConfigVersion.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisTargets-debug.cmake b/vendor/SFML/lib/cmake/Vorbis/VorbisTargets-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisTargets-debug.cmake rename to vendor/SFML/lib/cmake/Vorbis/VorbisTargets-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisTargets-release.cmake b/vendor/SFML/lib/cmake/Vorbis/VorbisTargets-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisTargets-release.cmake rename to vendor/SFML/lib/cmake/Vorbis/VorbisTargets-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisTargets.cmake b/vendor/SFML/lib/cmake/Vorbis/VorbisTargets.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/Vorbis/VorbisTargets.cmake rename to vendor/SFML/lib/cmake/Vorbis/VorbisTargets.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/freetype/freetype-config-debug.cmake b/vendor/SFML/lib/cmake/freetype/freetype-config-debug.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/freetype/freetype-config-debug.cmake rename to vendor/SFML/lib/cmake/freetype/freetype-config-debug.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/freetype/freetype-config-release.cmake b/vendor/SFML/lib/cmake/freetype/freetype-config-release.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/freetype/freetype-config-release.cmake rename to vendor/SFML/lib/cmake/freetype/freetype-config-release.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/freetype/freetype-config-version.cmake b/vendor/SFML/lib/cmake/freetype/freetype-config-version.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/freetype/freetype-config-version.cmake rename to vendor/SFML/lib/cmake/freetype/freetype-config-version.cmake diff --git a/vendor/SFML-3.0.0/lib/cmake/freetype/freetype-config.cmake b/vendor/SFML/lib/cmake/freetype/freetype-config.cmake similarity index 100% rename from vendor/SFML-3.0.0/lib/cmake/freetype/freetype-config.cmake rename to vendor/SFML/lib/cmake/freetype/freetype-config.cmake diff --git a/vendor/SFML-3.0.0/lib/pkgconfig/sfml-all.pc b/vendor/SFML/lib/pkgconfig/sfml-all.pc similarity index 100% rename from vendor/SFML-3.0.0/lib/pkgconfig/sfml-all.pc rename to vendor/SFML/lib/pkgconfig/sfml-all.pc diff --git a/vendor/SFML-3.0.0/lib/pkgconfig/sfml-audio.pc b/vendor/SFML/lib/pkgconfig/sfml-audio.pc similarity index 100% rename from vendor/SFML-3.0.0/lib/pkgconfig/sfml-audio.pc rename to vendor/SFML/lib/pkgconfig/sfml-audio.pc diff --git a/vendor/SFML-3.0.0/lib/pkgconfig/sfml-graphics.pc b/vendor/SFML/lib/pkgconfig/sfml-graphics.pc similarity index 100% rename from vendor/SFML-3.0.0/lib/pkgconfig/sfml-graphics.pc rename to vendor/SFML/lib/pkgconfig/sfml-graphics.pc diff --git a/vendor/SFML-3.0.0/lib/pkgconfig/sfml-network.pc b/vendor/SFML/lib/pkgconfig/sfml-network.pc similarity index 100% rename from vendor/SFML-3.0.0/lib/pkgconfig/sfml-network.pc rename to vendor/SFML/lib/pkgconfig/sfml-network.pc diff --git a/vendor/SFML-3.0.0/lib/pkgconfig/sfml-system.pc b/vendor/SFML/lib/pkgconfig/sfml-system.pc similarity index 100% rename from vendor/SFML-3.0.0/lib/pkgconfig/sfml-system.pc rename to vendor/SFML/lib/pkgconfig/sfml-system.pc diff --git a/vendor/SFML-3.0.0/lib/pkgconfig/sfml-window.pc b/vendor/SFML/lib/pkgconfig/sfml-window.pc similarity index 100% rename from vendor/SFML-3.0.0/lib/pkgconfig/sfml-window.pc rename to vendor/SFML/lib/pkgconfig/sfml-window.pc diff --git a/vendor/SFML-3.0.0/share/doc/SFML/license.md b/vendor/SFML/share/doc/SFML/license.md similarity index 100% rename from vendor/SFML-3.0.0/share/doc/SFML/license.md rename to vendor/SFML/share/doc/SFML/license.md diff --git a/vendor/SFML-3.0.0/share/doc/SFML/readme.md b/vendor/SFML/share/doc/SFML/readme.md similarity index 100% rename from vendor/SFML-3.0.0/share/doc/SFML/readme.md rename to vendor/SFML/share/doc/SFML/readme.md