From 09abf1b529b4226f585ecfbb20866715b901755b Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 1 Dec 2021 13:34:22 +0800 Subject: +fpm --- Client/Project/VisualStudio/.gitignore | 6 +- .../VisualStudio/EntityViewer/EntityViewer.vcxproj | 130 ++++++ .../EntityViewer/EntityViewer.vcxproj.filters | 17 + .../EntityViewer/EntityViewer.vcxproj.user | 4 + .../VisualStudio/MeshBuilder/MeshBuilder.vcxproj | 130 ++++++ .../MeshBuilder/MeshBuilder.vcxproj.filters | 17 + .../MeshBuilder/MeshBuilder.vcxproj.user | 4 + Client/Project/VisualStudio/PND.sln | 205 ++++++---- Client/Project/VisualStudio/PND/PND.vcxproj | 275 +++++++------ .../Project/VisualStudio/PND/PND.vcxproj.filters | 93 ++++- Client/Project/VisualStudio/PND/PND.vcxproj.user | 6 +- .../VisualStudio/PND_Editor/PND_Editor.vcxproj | 130 ++++++ .../PND_Editor/PND_Editor.vcxproj.filters | 2 + .../PND_Editor/PND_Editor.vcxproj.user | 4 + .../Project/VisualStudio/PND_LIB/PND_LIB.vcxproj | 130 ++++++ .../VisualStudio/PND_LIB/PND_LIB.vcxproj.filters | 17 + .../VisualStudio/PND_LIB/PND_LIB.vcxproj.user | 4 + Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj | 420 +++++++++---------- .../VisualStudio/Phy2D/Phy2D.vcxproj.filters | 448 ++++++++++----------- .../Project/VisualStudio/Phy2D/Phy2D.vcxproj.user | 6 +- Client/Project/VisualStudio/Phy2D/imgui.ini | 40 +- .../VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj | 407 +++++++++---------- .../Phy2Dlite/Phy2Dlite.vcxproj.filters | 332 +++++++-------- .../VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.user | 6 +- Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj | 258 ++++++------ .../VisualStudio/Sand2D/Sand2D.vcxproj.filters | 14 +- .../VisualStudio/Sand2D/Sand2D.vcxproj.user | 6 +- .../Project/VisualStudio/UIEditor/UIEditor.vcxproj | 130 ++++++ .../VisualStudio/UIEditor/UIEditor.vcxproj.filters | 17 + .../VisualStudio/UIEditor/UIEditor.vcxproj.user | 4 + .../VisualStudio/fixed-point/fixed-point.vcxproj | 260 ++++++------ .../fixed-point/fixed-point.vcxproj.filters | 10 +- .../fixed-point/fixed-point.vcxproj.user | 6 +- 33 files changed, 2214 insertions(+), 1324 deletions(-) create mode 100644 Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj create mode 100644 Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj.filters create mode 100644 Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj.user create mode 100644 Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj create mode 100644 Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj.filters create mode 100644 Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj.user create mode 100644 Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj create mode 100644 Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj.filters create mode 100644 Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj.user create mode 100644 Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj create mode 100644 Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj.filters create mode 100644 Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj.user create mode 100644 Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj create mode 100644 Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj.filters create mode 100644 Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj.user (limited to 'Client/Project') diff --git a/Client/Project/VisualStudio/.gitignore b/Client/Project/VisualStudio/.gitignore index eedebea..f7bae8f 100644 --- a/Client/Project/VisualStudio/.gitignore +++ b/Client/Project/VisualStudio/.gitignore @@ -1,4 +1,4 @@ -.vs -x64 -*/x64 +.vs +x64 +*/x64 */Debug \ No newline at end of file diff --git a/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj b/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj new file mode 100644 index 0000000..baf0873 --- /dev/null +++ b/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj @@ -0,0 +1,130 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758} + EntityViewer + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj.filters b/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj.filters new file mode 100644 index 0000000..6546942 --- /dev/null +++ b/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj.user b/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj.user new file mode 100644 index 0000000..6e2aec7 --- /dev/null +++ b/Client/Project/VisualStudio/EntityViewer/EntityViewer.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj b/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj new file mode 100644 index 0000000..c7fbd16 --- /dev/null +++ b/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj @@ -0,0 +1,130 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE} + MeshBuilder + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj.filters b/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj.filters new file mode 100644 index 0000000..6546942 --- /dev/null +++ b/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj.user b/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj.user new file mode 100644 index 0000000..6e2aec7 --- /dev/null +++ b/Client/Project/VisualStudio/MeshBuilder/MeshBuilder.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND.sln b/Client/Project/VisualStudio/PND.sln index 3f8e91f..1fa5f6b 100644 --- a/Client/Project/VisualStudio/PND.sln +++ b/Client/Project/VisualStudio/PND.sln @@ -1,71 +1,134 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28307.1500 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PND", "PND\PND.vcxproj", "{CD465A91-4616-4137-8C7C-3E273206C3B4}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Phy2D", "Phy2D\Phy2D.vcxproj", "{CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Sand2D", "Sand2D\Sand2D.vcxproj", "{C788B73C-D57E-4B6E-B9F8-FB44908AC05E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fixed-point", "fixed-point\fixed-point.vcxproj", "{D156880C-4476-4919-9FDA-5747912E76D3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Phy2Dlite", "Phy2Dlite\Phy2Dlite.vcxproj", "{F6C185DE-D998-4C8F-BAFE-2B3111460D98}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {CD465A91-4616-4137-8C7C-3E273206C3B4}.Debug|x64.ActiveCfg = Debug|x64 - {CD465A91-4616-4137-8C7C-3E273206C3B4}.Debug|x64.Build.0 = Debug|x64 - {CD465A91-4616-4137-8C7C-3E273206C3B4}.Debug|x86.ActiveCfg = Debug|Win32 - {CD465A91-4616-4137-8C7C-3E273206C3B4}.Debug|x86.Build.0 = Debug|Win32 - {CD465A91-4616-4137-8C7C-3E273206C3B4}.Release|x64.ActiveCfg = Release|x64 - {CD465A91-4616-4137-8C7C-3E273206C3B4}.Release|x64.Build.0 = Release|x64 - {CD465A91-4616-4137-8C7C-3E273206C3B4}.Release|x86.ActiveCfg = Release|Win32 - {CD465A91-4616-4137-8C7C-3E273206C3B4}.Release|x86.Build.0 = Release|Win32 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Debug|x64.ActiveCfg = Debug|x64 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Debug|x64.Build.0 = Debug|x64 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Debug|x86.ActiveCfg = Debug|Win32 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Debug|x86.Build.0 = Debug|Win32 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Release|x64.ActiveCfg = Release|x64 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Release|x64.Build.0 = Release|x64 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Release|x86.ActiveCfg = Release|Win32 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Release|x86.Build.0 = Release|Win32 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Debug|x64.ActiveCfg = Debug|x64 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Debug|x64.Build.0 = Debug|x64 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Debug|x86.ActiveCfg = Debug|Win32 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Debug|x86.Build.0 = Debug|Win32 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Release|x64.ActiveCfg = Release|x64 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Release|x64.Build.0 = Release|x64 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Release|x86.ActiveCfg = Release|Win32 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Release|x86.Build.0 = Release|Win32 - {D156880C-4476-4919-9FDA-5747912E76D3}.Debug|x64.ActiveCfg = Debug|x64 - {D156880C-4476-4919-9FDA-5747912E76D3}.Debug|x64.Build.0 = Debug|x64 - {D156880C-4476-4919-9FDA-5747912E76D3}.Debug|x86.ActiveCfg = Debug|Win32 - {D156880C-4476-4919-9FDA-5747912E76D3}.Debug|x86.Build.0 = Debug|Win32 - {D156880C-4476-4919-9FDA-5747912E76D3}.Release|x64.ActiveCfg = Release|x64 - {D156880C-4476-4919-9FDA-5747912E76D3}.Release|x64.Build.0 = Release|x64 - {D156880C-4476-4919-9FDA-5747912E76D3}.Release|x86.ActiveCfg = Release|Win32 - {D156880C-4476-4919-9FDA-5747912E76D3}.Release|x86.Build.0 = Release|Win32 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Debug|x64.ActiveCfg = Debug|x64 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Debug|x64.Build.0 = Debug|x64 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Debug|x86.ActiveCfg = Debug|Win32 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Debug|x86.Build.0 = Debug|Win32 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Release|x64.ActiveCfg = Release|x64 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Release|x64.Build.0 = Release|x64 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Release|x86.ActiveCfg = Release|Win32 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Release|x86.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {3501AE41-C1E5-4131-9AB2-0DCBD10D9E3F} - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.1500 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PND", "PND\PND.vcxproj", "{CD465A91-4616-4137-8C7C-3E273206C3B4}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Phy2D", "Phy2D\Phy2D.vcxproj", "{CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fixed-point", "fixed-point\fixed-point.vcxproj", "{D156880C-4476-4919-9FDA-5747912E76D3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Phy2Dlite", "Phy2Dlite\Phy2Dlite.vcxproj", "{F6C185DE-D998-4C8F-BAFE-2B3111460D98}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Libraries", "Libraries", "{845A763B-9CD8-4795-A3C4-D83146B3550C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Sand2D", "Sand2D\Sand2D.vcxproj", "{C788B73C-D57E-4B6E-B9F8-FB44908AC05E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EntityViewer", "EntityViewer\EntityViewer.vcxproj", "{648C7FE7-9EF4-4D6D-8701-93F1821EB758}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PND_Editor", "PND_Editor\PND_Editor.vcxproj", "{88176848-F65A-4533-9022-22814A801CBC}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PND_LIB", "PND_LIB\PND_LIB.vcxproj", "{07536C61-3069-46C4-B5F5-782A36B92DD8}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{69D9F6A1-FE05-4A58-B87C-E62A6C69BE8F}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MeshBuilder", "MeshBuilder\MeshBuilder.vcxproj", "{EB023CB6-1559-46FB-8C43-B4B20482DDFE}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UIEditor", "UIEditor\UIEditor.vcxproj", "{F19BE44F-AF92-49E2-A43B-BF0348FAD139}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CD465A91-4616-4137-8C7C-3E273206C3B4}.Debug|x64.ActiveCfg = Debug|x64 + {CD465A91-4616-4137-8C7C-3E273206C3B4}.Debug|x64.Build.0 = Debug|x64 + {CD465A91-4616-4137-8C7C-3E273206C3B4}.Debug|x86.ActiveCfg = Debug|Win32 + {CD465A91-4616-4137-8C7C-3E273206C3B4}.Debug|x86.Build.0 = Debug|Win32 + {CD465A91-4616-4137-8C7C-3E273206C3B4}.Release|x64.ActiveCfg = Release|x64 + {CD465A91-4616-4137-8C7C-3E273206C3B4}.Release|x64.Build.0 = Release|x64 + {CD465A91-4616-4137-8C7C-3E273206C3B4}.Release|x86.ActiveCfg = Release|Win32 + {CD465A91-4616-4137-8C7C-3E273206C3B4}.Release|x86.Build.0 = Release|Win32 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Debug|x64.ActiveCfg = Debug|x64 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Debug|x64.Build.0 = Debug|x64 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Debug|x86.ActiveCfg = Debug|Win32 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Debug|x86.Build.0 = Debug|Win32 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Release|x64.ActiveCfg = Release|x64 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Release|x64.Build.0 = Release|x64 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Release|x86.ActiveCfg = Release|Win32 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6}.Release|x86.Build.0 = Release|Win32 + {D156880C-4476-4919-9FDA-5747912E76D3}.Debug|x64.ActiveCfg = Debug|x64 + {D156880C-4476-4919-9FDA-5747912E76D3}.Debug|x64.Build.0 = Debug|x64 + {D156880C-4476-4919-9FDA-5747912E76D3}.Debug|x86.ActiveCfg = Debug|Win32 + {D156880C-4476-4919-9FDA-5747912E76D3}.Debug|x86.Build.0 = Debug|Win32 + {D156880C-4476-4919-9FDA-5747912E76D3}.Release|x64.ActiveCfg = Release|x64 + {D156880C-4476-4919-9FDA-5747912E76D3}.Release|x64.Build.0 = Release|x64 + {D156880C-4476-4919-9FDA-5747912E76D3}.Release|x86.ActiveCfg = Release|Win32 + {D156880C-4476-4919-9FDA-5747912E76D3}.Release|x86.Build.0 = Release|Win32 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Debug|x64.ActiveCfg = Debug|x64 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Debug|x64.Build.0 = Debug|x64 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Debug|x86.ActiveCfg = Debug|Win32 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Debug|x86.Build.0 = Debug|Win32 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Release|x64.ActiveCfg = Release|x64 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Release|x64.Build.0 = Release|x64 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Release|x86.ActiveCfg = Release|Win32 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98}.Release|x86.Build.0 = Release|Win32 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Debug|x64.ActiveCfg = Debug|x64 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Debug|x64.Build.0 = Debug|x64 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Debug|x86.ActiveCfg = Debug|Win32 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Debug|x86.Build.0 = Debug|Win32 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Release|x64.ActiveCfg = Release|x64 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Release|x64.Build.0 = Release|x64 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Release|x86.ActiveCfg = Release|Win32 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E}.Release|x86.Build.0 = Release|Win32 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758}.Debug|x64.ActiveCfg = Debug|x64 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758}.Debug|x64.Build.0 = Debug|x64 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758}.Debug|x86.ActiveCfg = Debug|Win32 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758}.Debug|x86.Build.0 = Debug|Win32 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758}.Release|x64.ActiveCfg = Release|x64 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758}.Release|x64.Build.0 = Release|x64 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758}.Release|x86.ActiveCfg = Release|Win32 + {648C7FE7-9EF4-4D6D-8701-93F1821EB758}.Release|x86.Build.0 = Release|Win32 + {88176848-F65A-4533-9022-22814A801CBC}.Debug|x64.ActiveCfg = Debug|x64 + {88176848-F65A-4533-9022-22814A801CBC}.Debug|x64.Build.0 = Debug|x64 + {88176848-F65A-4533-9022-22814A801CBC}.Debug|x86.ActiveCfg = Debug|Win32 + {88176848-F65A-4533-9022-22814A801CBC}.Debug|x86.Build.0 = Debug|Win32 + {88176848-F65A-4533-9022-22814A801CBC}.Release|x64.ActiveCfg = Release|x64 + {88176848-F65A-4533-9022-22814A801CBC}.Release|x64.Build.0 = Release|x64 + {88176848-F65A-4533-9022-22814A801CBC}.Release|x86.ActiveCfg = Release|Win32 + {88176848-F65A-4533-9022-22814A801CBC}.Release|x86.Build.0 = Release|Win32 + {07536C61-3069-46C4-B5F5-782A36B92DD8}.Debug|x64.ActiveCfg = Debug|x64 + {07536C61-3069-46C4-B5F5-782A36B92DD8}.Debug|x64.Build.0 = Debug|x64 + {07536C61-3069-46C4-B5F5-782A36B92DD8}.Debug|x86.ActiveCfg = Debug|Win32 + {07536C61-3069-46C4-B5F5-782A36B92DD8}.Debug|x86.Build.0 = Debug|Win32 + {07536C61-3069-46C4-B5F5-782A36B92DD8}.Release|x64.ActiveCfg = Release|x64 + {07536C61-3069-46C4-B5F5-782A36B92DD8}.Release|x64.Build.0 = Release|x64 + {07536C61-3069-46C4-B5F5-782A36B92DD8}.Release|x86.ActiveCfg = Release|Win32 + {07536C61-3069-46C4-B5F5-782A36B92DD8}.Release|x86.Build.0 = Release|Win32 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE}.Debug|x64.ActiveCfg = Debug|x64 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE}.Debug|x64.Build.0 = Debug|x64 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE}.Debug|x86.ActiveCfg = Debug|Win32 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE}.Debug|x86.Build.0 = Debug|Win32 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE}.Release|x64.ActiveCfg = Release|x64 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE}.Release|x64.Build.0 = Release|x64 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE}.Release|x86.ActiveCfg = Release|Win32 + {EB023CB6-1559-46FB-8C43-B4B20482DDFE}.Release|x86.Build.0 = Release|Win32 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139}.Debug|x64.ActiveCfg = Debug|x64 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139}.Debug|x64.Build.0 = Debug|x64 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139}.Debug|x86.ActiveCfg = Debug|Win32 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139}.Debug|x86.Build.0 = Debug|Win32 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139}.Release|x64.ActiveCfg = Release|x64 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139}.Release|x64.Build.0 = Release|x64 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139}.Release|x86.ActiveCfg = Release|Win32 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6} = {845A763B-9CD8-4795-A3C4-D83146B3550C} + {D156880C-4476-4919-9FDA-5747912E76D3} = {845A763B-9CD8-4795-A3C4-D83146B3550C} + {F6C185DE-D998-4C8F-BAFE-2B3111460D98} = {845A763B-9CD8-4795-A3C4-D83146B3550C} + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E} = {845A763B-9CD8-4795-A3C4-D83146B3550C} + {648C7FE7-9EF4-4D6D-8701-93F1821EB758} = {69D9F6A1-FE05-4A58-B87C-E62A6C69BE8F} + {EB023CB6-1559-46FB-8C43-B4B20482DDFE} = {69D9F6A1-FE05-4A58-B87C-E62A6C69BE8F} + {F19BE44F-AF92-49E2-A43B-BF0348FAD139} = {69D9F6A1-FE05-4A58-B87C-E62A6C69BE8F} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3501AE41-C1E5-4131-9AB2-0DCBD10D9E3F} + EndGlobalSection +EndGlobal diff --git a/Client/Project/VisualStudio/PND/PND.vcxproj b/Client/Project/VisualStudio/PND/PND.vcxproj index 5463c2a..7e1f0be 100644 --- a/Client/Project/VisualStudio/PND/PND.vcxproj +++ b/Client/Project/VisualStudio/PND/PND.vcxproj @@ -1,134 +1,143 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - - - - - - - 15.0 - {CD465A91-4616-4137-8C7C-3E273206C3B4} - PND - 10.0.17763.0 - - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - Level3 - Disabled - true - true - - - Console - - - - - Level3 - Disabled - true - true - - - Console - - - - - Level3 - MaxSpeed - true - true - true - true - - - Console - true - true - - - - - Level3 - MaxSpeed - true - true - true - true - - - Console - true - true - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + + + + + + + + + + + + + + 15.0 + {CD465A91-4616-4137-8C7C-3E273206C3B4} + PND + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\..\ThirdParty;$(SolutionDir)..\..\ThirdParty\imgui;$(SolutionDir)..\..\ThirdParty\SDL2;%(AdditionalIncludeDirectories) + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\..\ThirdParty;$(SolutionDir)..\..\ThirdParty\imgui;$(SolutionDir)..\..\ThirdParty\SDL2;%(AdditionalIncludeDirectories) + + + Console + true + true + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND/PND.vcxproj.filters b/Client/Project/VisualStudio/PND/PND.vcxproj.filters index 0b69748..b2aadd0 100644 --- a/Client/Project/VisualStudio/PND/PND.vcxproj.filters +++ b/Client/Project/VisualStudio/PND/PND.vcxproj.filters @@ -1,16 +1,79 @@ - - - - - - - - {ddc865f0-d071-428f-836b-00b749f97e5d} - - - - - Common - - + + + + + + GameCode + + + GameCode + + + + + {ddc865f0-d071-428f-836b-00b749f97e5d} + + + {3fb2627a-92a7-42e8-aa4e-166d84bd0f73} + + + {5f4047ed-fcbe-48b0-aef3-0754c38614b3} + + + {1ef7a618-142f-48e8-8738-8e458baf378d} + + + {edf3e9c8-e892-427f-829e-952e667fb23d} + + + {2803d8a8-235b-4dc0-b66e-88f1d37755e0} + + + {526b05d9-ecfb-47a4-a65a-027444399677} + + + {bf80b17e-dd3c-4a36-8169-001bb7685d80} + + + {d64b3cd1-1076-426e-8e53-eb764af4f76f} + + + {714ede04-3705-4426-a67d-baf0415f5cca} + + + {fe1ef083-aea1-4b13-bd39-e59ed151e4ae} + + + {4c0bcb8a-bee5-4369-90a4-7b9f54d75879} + + + {03e1edf1-7886-4043-8d08-d17447de8cb0} + + + {377a9d79-e750-4e07-b0de-ab2c23c69a63} + + + {0987d54d-d3b3-4c23-964f-7ca3a7f14d11} + + + + + Common + + + GameCode + + + GameCode + + + Animation + + + GameCode\Components + + + Math + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND/PND.vcxproj.user b/Client/Project/VisualStudio/PND/PND.vcxproj.user index be25078..6e2aec7 100644 --- a/Client/Project/VisualStudio/PND/PND.vcxproj.user +++ b/Client/Project/VisualStudio/PND/PND.vcxproj.user @@ -1,4 +1,4 @@ - - - + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj b/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj new file mode 100644 index 0000000..8490866 --- /dev/null +++ b/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj @@ -0,0 +1,130 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {88176848-F65A-4533-9022-22814A801CBC} + PNDEditor + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj.filters b/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj.filters new file mode 100644 index 0000000..ef1ebf5 --- /dev/null +++ b/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj.filters @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj.user b/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj.user new file mode 100644 index 0000000..6e2aec7 --- /dev/null +++ b/Client/Project/VisualStudio/PND_Editor/PND_Editor.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj b/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj new file mode 100644 index 0000000..f8241bc --- /dev/null +++ b/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj @@ -0,0 +1,130 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {07536C61-3069-46C4-B5F5-782A36B92DD8} + PNDLIB + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj.filters b/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj.filters new file mode 100644 index 0000000..6546942 --- /dev/null +++ b/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj.user b/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj.user new file mode 100644 index 0000000..6e2aec7 --- /dev/null +++ b/Client/Project/VisualStudio/PND_LIB/PND_LIB.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj b/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj index af0d17d..54f9787 100644 --- a/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj +++ b/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj @@ -1,211 +1,211 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - 15.0 - {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6} - Phy2D - 10.0.17763.0 - - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - $(ProjectDir)..\..\..\Build - - - $(ProjectDir)..\..\..\Build - - - - Level3 - Disabled - true - true - - - Console - - - - - Level3 - Disabled - false - true - $(SolutionDir)..\..\ThirdParty;$(SolutionDir)..\..\ThirdParty\imgui;$(SolutionDir)..\..\ThirdParty\SDL2;%(AdditionalIncludeDirectories) - ProgramDatabase - AnySuitable - - - Console - $(ProjectDir)..\..\..\ThirdParty\SDL2\lib\x64;%(AdditionalLibraryDirectories) - SDL2.lib;SDL2main.lib;opengl32.lib;%(AdditionalDependencies) - - - - - Level3 - MaxSpeed - true - true - true - true - - - Console - true - true - - - - - Level3 - MaxSpeed - true - true - false - true - D:\Documents\VisualStudio2017\Projects\LOG\Client\Source\ThirdParty;D:\Documents\VisualStudio2017\Projects\LOG\Client\Source\ThirdParty\imgui;D:\Documents\VisualStudio2017\Projects\LOG\Client\Source\ThirdParty\SDL2;%(AdditionalIncludeDirectories) - - - Console - true - true - $(ProjectDir)..\..\..\Source\ThirdParty\SDL2\lib\x64;%(AdditionalLibraryDirectories) - SDL2.lib;SDL2main.lib;opengl32.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {CBFF28D4-4E33-4DB7-BA5F-0C8D9CE5D1B6} + Phy2D + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(ProjectDir)..\..\..\Build + + + $(ProjectDir)..\..\..\Build + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + false + true + $(SolutionDir)..\..\ThirdParty;$(SolutionDir)..\..\ThirdParty\imgui;$(SolutionDir)..\..\ThirdParty\SDL2;%(AdditionalIncludeDirectories) + ProgramDatabase + AnySuitable + + + Console + $(ProjectDir)..\..\..\ThirdParty\SDL2\lib\x64;%(AdditionalLibraryDirectories) + SDL2.lib;SDL2main.lib;opengl32.lib;%(AdditionalDependencies) + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + false + true + D:\Documents\VisualStudio2017\Projects\LOG\Client\Source\ThirdParty;D:\Documents\VisualStudio2017\Projects\LOG\Client\Source\ThirdParty\imgui;D:\Documents\VisualStudio2017\Projects\LOG\Client\Source\ThirdParty\SDL2;%(AdditionalIncludeDirectories) + + + Console + true + true + $(ProjectDir)..\..\..\Source\ThirdParty\SDL2\lib\x64;%(AdditionalLibraryDirectories) + SDL2.lib;SDL2main.lib;opengl32.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj.filters b/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj.filters index 095f8e1..5a36dba 100644 --- a/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj.filters +++ b/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj.filters @@ -1,225 +1,225 @@ - - - - - {62eaceb5-1503-4237-b8b9-5dcc05212dbd} - - - {c51efad7-946b-4948-957e-4f4d6737ed93} - - - {6c1d51b9-5afe-46fb-a449-3100c2d58a72} - - - {e496beb9-5af2-42a7-afb5-29cf18b93f78} - - - {85bb91e1-cb20-476e-969b-9fd35bbca3f0} - - - {3fc1eb36-36c6-4b4c-8777-8f47c906eaff} - - - {b4d78560-5498-4b35-8f8d-f87db40a4e52} - - - {0fd3d9e4-aaf1-4d81-9dff-da02f4d227c6} - - - {4f477d90-081e-42f9-8a1a-146b2ecd4215} - - - {596062aa-a263-4c8c-acf2-1267b28a0f97} - - - - - Shapes - - - Shapes - - - Dynamic - - - Common - - - Test - - - Test - - - Dynamic - - - Dynamic - - - Dynamic - - - Dynamic - - - libs\glad - - - libs\fix32 - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - - - Shapes - - - Shapes - - - Shapes - - - - Rendering - - - Dynamic - - - Common - - - Common - - - Test - - - Dynamic - - - Dynamic - - - Dynamic - - - libs\glad - - - libs\glad - - - libs\fix32 - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\imgui - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - - - - - libs\libfixmath - - - - - libs\libfixmath - - - libs\libfixmath - - - libs\libfixmath - - + + + + + {62eaceb5-1503-4237-b8b9-5dcc05212dbd} + + + {c51efad7-946b-4948-957e-4f4d6737ed93} + + + {6c1d51b9-5afe-46fb-a449-3100c2d58a72} + + + {e496beb9-5af2-42a7-afb5-29cf18b93f78} + + + {85bb91e1-cb20-476e-969b-9fd35bbca3f0} + + + {3fc1eb36-36c6-4b4c-8777-8f47c906eaff} + + + {b4d78560-5498-4b35-8f8d-f87db40a4e52} + + + {0fd3d9e4-aaf1-4d81-9dff-da02f4d227c6} + + + {4f477d90-081e-42f9-8a1a-146b2ecd4215} + + + {596062aa-a263-4c8c-acf2-1267b28a0f97} + + + + + Shapes + + + Shapes + + + Dynamic + + + Common + + + Test + + + Test + + + Dynamic + + + Dynamic + + + Dynamic + + + Dynamic + + + libs\glad + + + libs\fix32 + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + + + Shapes + + + Shapes + + + Shapes + + + + Rendering + + + Dynamic + + + Common + + + Common + + + Test + + + Dynamic + + + Dynamic + + + Dynamic + + + libs\glad + + + libs\glad + + + libs\fix32 + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\imgui + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + + + + + libs\libfixmath + + + + + libs\libfixmath + + + libs\libfixmath + + + libs\libfixmath + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj.user b/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj.user index be25078..6e2aec7 100644 --- a/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj.user +++ b/Client/Project/VisualStudio/Phy2D/Phy2D.vcxproj.user @@ -1,4 +1,4 @@ - - - + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Phy2D/imgui.ini b/Client/Project/VisualStudio/Phy2D/imgui.ini index c50baaa..af18719 100644 --- a/Client/Project/VisualStudio/Phy2D/imgui.ini +++ b/Client/Project/VisualStudio/Phy2D/imgui.ini @@ -1,20 +1,20 @@ -[Window][Debug##Default] -Pos=60,60 -Size=400,400 -Collapsed=0 - -[Window][Hello, world!] -Pos=1065,64 -Size=359,532 -Collapsed=0 - -[Window][Dear ImGui Demo] -Pos=870,418 -Size=550,514 -Collapsed=0 - -[Window][Another Window] -Pos=1788,122 -Size=198,71 -Collapsed=0 - +[Window][Debug##Default] +Pos=60,60 +Size=400,400 +Collapsed=0 + +[Window][Hello, world!] +Pos=1065,64 +Size=359,532 +Collapsed=0 + +[Window][Dear ImGui Demo] +Pos=870,418 +Size=550,514 +Collapsed=0 + +[Window][Another Window] +Pos=1788,122 +Size=198,71 +Collapsed=0 + diff --git a/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj b/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj index 0f958df..ca77c33 100644 --- a/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj +++ b/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj @@ -1,203 +1,206 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - 15.0 - {F6C185DE-D998-4C8F-BAFE-2B3111460D98} - Phy2Dlite - 10.0.17763.0 - - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - $(ProjectDir)..\..\..\Build - - - $(ProjectDir)..\..\..\Build - - - - Level3 - Disabled - false - true - $(SolutionDir)..\..\ThirdParty;$(SolutionDir)..\..\ThirdParty\imgui;$(SolutionDir)..\..\ThirdParty\SDL2;%(AdditionalIncludeDirectories) - AnySuitable - - - Console - $(ProjectDir)..\..\..\ThirdParty\SDL2\lib\x64;%(AdditionalLibraryDirectories) - SDL2.lib;SDL2main.lib;opengl32.lib;%(AdditionalDependencies) - - - - - Level3 - Disabled - true - true - - - Console - - - - - Level3 - MaxSpeed - true - true - true - true - - - Console - true - true - - - - - Level3 - MaxSpeed - true - true - false - true - $(SolutionDir)..\..\ThirdParty;$(SolutionDir)..\..\ThirdParty\imgui;$(SolutionDir)..\..\ThirdParty\SDL2;%(AdditionalIncludeDirectories) - AnySuitable - Speed - - - Console - true - true - $(ProjectDir)..\..\..\ThirdParty\SDL2\lib\x64;%(AdditionalLibraryDirectories) - SDL2.lib;SDL2main.lib;opengl32.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {F6C185DE-D998-4C8F-BAFE-2B3111460D98} + Phy2Dlite + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(ProjectDir)..\..\..\Build + + + $(ProjectDir)..\..\..\Build + + + + Level3 + Disabled + false + true + $(SolutionDir)..\..\ThirdParty;$(SolutionDir)..\..\ThirdParty\imgui;$(SolutionDir)..\..\ThirdParty\SDL2;%(AdditionalIncludeDirectories) + AnySuitable + + + Console + $(ProjectDir)..\..\..\ThirdParty\SDL2\lib\x64;%(AdditionalLibraryDirectories) + SDL2.lib;SDL2main.lib;opengl32.lib;%(AdditionalDependencies) + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + false + true + $(SolutionDir)..\..\ThirdParty;$(SolutionDir)..\..\ThirdParty\imgui;$(SolutionDir)..\..\ThirdParty\SDL2;%(AdditionalIncludeDirectories) + AnySuitable + Speed + + + Console + true + true + $(ProjectDir)..\..\..\ThirdParty\SDL2\lib\x64;%(AdditionalLibraryDirectories) + SDL2.lib;SDL2main.lib;opengl32.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.filters b/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.filters index 96774eb..a3de50b 100644 --- a/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.filters +++ b/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.filters @@ -1,161 +1,173 @@ - - - - - - - - - - - Tests - - - Tests - - - Libs\glad - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - - - - - - - - - - Tests - - - Libs\glad - - - Libs\glad - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\imgui - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - - - - {aa13e2d4-36b3-4889-bf2c-38eae8caa717} - - - {d0bcb75b-d416-48c8-8065-8eb8a6e7904f} - - - {560d5eea-f146-4fa9-9e1d-f8ce42658c40} - - - {3f3b7954-5ccf-4863-8b10-64157ecbeab1} - - - {4e30e963-7f3a-4985-af2c-1949040ee1a8} - - - - - Libs\libfixmath - - - - - Libs\libfixmath - - - Libs\libfixmath - - - Libs\libfixmath - - + + + + + + + + + + + Tests + + + Tests + + + Libs\glad + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + + + + + + + + + + Tests + + + Libs\glad + + + Libs\glad + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\imgui + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\fpm + + + Libs\fpm + + + Libs\fpm + + + + + {aa13e2d4-36b3-4889-bf2c-38eae8caa717} + + + {d0bcb75b-d416-48c8-8065-8eb8a6e7904f} + + + {560d5eea-f146-4fa9-9e1d-f8ce42658c40} + + + {3f3b7954-5ccf-4863-8b10-64157ecbeab1} + + + {4e30e963-7f3a-4985-af2c-1949040ee1a8} + + + {4670ccf3-2964-42b4-bb00-6b48eae171ad} + + + + + Libs\libfixmath + + + + + Libs\libfixmath + + + Libs\libfixmath + + + Libs\libfixmath + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.user b/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.user index be25078..6e2aec7 100644 --- a/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.user +++ b/Client/Project/VisualStudio/Phy2Dlite/Phy2Dlite.vcxproj.user @@ -1,4 +1,4 @@ - - - + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj b/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj index a59df1d..cd3760a 100644 --- a/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj +++ b/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj @@ -1,130 +1,130 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - 15.0 - {C788B73C-D57E-4B6E-B9F8-FB44908AC05E} - Sand2D - 10.0.17763.0 - - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - Level3 - Disabled - true - true - - - Console - - - - - Level3 - Disabled - true - true - - - Console - - - - - Level3 - MaxSpeed - true - true - true - true - - - Console - true - true - - - - - Level3 - MaxSpeed - true - true - true - true - - - Console - true - true - - - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {C788B73C-D57E-4B6E-B9F8-FB44908AC05E} + Sand2D + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj.filters b/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj.filters index 4454c72..6e01002 100644 --- a/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj.filters +++ b/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj.filters @@ -1,8 +1,8 @@ - - - - - {77ef3ecd-dd1e-49c7-a8fc-bcc241814405} - - + + + + + {77ef3ecd-dd1e-49c7-a8fc-bcc241814405} + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj.user b/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj.user index be25078..6e2aec7 100644 --- a/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj.user +++ b/Client/Project/VisualStudio/Sand2D/Sand2D.vcxproj.user @@ -1,4 +1,4 @@ - - - + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj b/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj new file mode 100644 index 0000000..ab96f3f --- /dev/null +++ b/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj @@ -0,0 +1,130 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {F19BE44F-AF92-49E2-A43B-BF0348FAD139} + UIEditor + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj.filters b/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj.filters new file mode 100644 index 0000000..6546942 --- /dev/null +++ b/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj.user b/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj.user new file mode 100644 index 0000000..6e2aec7 --- /dev/null +++ b/Client/Project/VisualStudio/UIEditor/UIEditor.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj b/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj index c5c0bd5..f2d52b2 100644 --- a/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj +++ b/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj @@ -1,131 +1,131 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - 15.0 - {D156880C-4476-4919-9FDA-5747912E76D3} - fixedpoint - 10.0.17763.0 - - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - Level3 - Disabled - true - true - - - Console - - - - - Level3 - Disabled - true - true - - - Console - - - - - Level3 - MaxSpeed - true - true - true - true - - - Console - true - true - - - - - Level3 - MaxSpeed - true - true - true - true - - - Console - true - true - - - - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {D156880C-4476-4919-9FDA-5747912E76D3} + fixedpoint + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj.filters b/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj.filters index 70937df..bc32693 100644 --- a/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj.filters +++ b/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj.filters @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj.user b/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj.user index be25078..6e2aec7 100644 --- a/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj.user +++ b/Client/Project/VisualStudio/fixed-point/fixed-point.vcxproj.user @@ -1,4 +1,4 @@ - - - + + + \ No newline at end of file -- cgit v1.1-26-g67d0