Skip to content

Commit

Permalink
it was not the last
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpoonPlaysGames committed Dec 22, 2023
1 parent 7e896e5 commit 0206121
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions primedev/core/math/vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class Vector3
{
public:
public:
float x, y, z;

Vector3(float _x, float _y, float _z) : x(_x), y(_y), z(_z) {}
Expand Down Expand Up @@ -306,7 +306,7 @@ FORCEINLINE void VectorDivide(const Vector3& a, const Vector3& b, Vector3& c)

class QAngle
{
public:
public:
float x;
float y;
float z;
Expand Down
4 changes: 2 additions & 2 deletions primedev/core/math/vplane.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ typedef int SideType;

class VPlane
{
public:
public:
VPlane();
VPlane(const Vector3& vNormal, float dist);
VPlane(const Vector3& vPoint, const QAngle& ang);
Expand All @@ -37,7 +37,7 @@ class VPlane
// Snap the specified point to the plane (along the plane's normal).
Vector3 SnapPointToPlane(const Vector3& vPoint) const;

public:
public:
Vector3 m_Normal;
float m_Dist;
};
Expand Down
2 changes: 1 addition & 1 deletion primedev/server/ai_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dtNavMesh* GetNavMeshForHull(int nHull);

class CAI_Helper
{
public:
public:
void DrawNavmeshPolys(dtNavMesh* pNavMesh = nullptr);
};

Expand Down

0 comments on commit 0206121

Please sign in to comment.