summaryrefslogtreecommitdiff
path: root/Client
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-12-13 09:44:15 +0800
committerchai <chaifix@163.com>2021-12-13 09:44:15 +0800
commit1b2883e563bb046068affbaf105b34875e12b6ca (patch)
tree6e4aa99fdaa80e598f1031683dff4eaea3b479d0 /Client
parent60cbbdec07ab7a5636eac5b3c024ae44e937f4d4 (diff)
*misc
Diffstat (limited to 'Client')
-rw-r--r--Client/Project/VisualStudio/Ragdolls/Ragdolls.sln3
-rw-r--r--Client/Source/Math/Vector2.hpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/Client/Project/VisualStudio/Ragdolls/Ragdolls.sln b/Client/Project/VisualStudio/Ragdolls/Ragdolls.sln
index 2126b83..4a53f75 100644
--- a/Client/Project/VisualStudio/Ragdolls/Ragdolls.sln
+++ b/Client/Project/VisualStudio/Ragdolls/Ragdolls.sln
@@ -11,6 +11,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MeshBuilder", "MeshBuilder\
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Ragdolls", "Ragdolls\Ragdolls.vcxproj", "{2F2534C8-5E6C-4F97-A0E6-17A523FD8AED}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Box2D", "Box2D", "{3A2F4BBE-AD5D-4CD4-9B33-8C9907083A46}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
@@ -41,6 +43,7 @@ Global
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C16CF3E1-0B6C-4166-A89C-846F7B28CA42} = {DA076690-8AD4-41EF-A512-A2883924E841}
+ {3A2F4BBE-AD5D-4CD4-9B33-8C9907083A46} = {CCEAD487-2900-4EC3-BA6C-663849A5517E}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4711990F-AE3C-42FE-8E31-1AB4861146E0}
diff --git a/Client/Source/Math/Vector2.hpp b/Client/Source/Math/Vector2.hpp
index 65f2c10..fed1fe7 100644
--- a/Client/Source/Math/Vector2.hpp
+++ b/Client/Source/Math/Vector2.hpp
@@ -49,7 +49,6 @@ public:
return res;
}
-
float x, y;
static Vector2Template<T> zero;
@@ -60,7 +59,6 @@ public:
using Vector2f = Vector2Template<float>;
using Vector2i = Vector2Template<int>;
-
template<typename T>
Vector2Template<T> Vector2Template<T>::zero = Vector2Template(0, 0);
template<typename T>