Skip to content

Commit

Permalink
formatting (the first and hopefully the last)
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpoonPlaysGames committed Dec 22, 2023
1 parent 5c899c1 commit 7e896e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions primedev/server/ai_navmesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ struct dtNavMeshParams
float orig[3]; ///< The world space origin of the navigation mesh's tile space. [(x, y, z)]
float tileWidth; ///< The width of each tile. (Along the x-axis.)
float tileHeight; ///< The height of each tile. (Along the z-axis.)
int maxTiles; ///< The maximum number of tiles the navigation mesh can contain. This and maxPolys are used to calculate how many bits are needed to identify tiles and polygons uniquely.
int maxPolys; ///< The maximum number of polygons each tile can contain. This and maxTiles are used to calculate how many bits are needed to identify tiles and polygons uniquely.
int maxTiles; ///< The maximum number of tiles the navigation mesh can contain. This and maxPolys are used to calculate how many bits
///< are needed to identify tiles and polygons uniquely.
int maxPolys; ///< The maximum number of polygons each tile can contain. This and maxTiles are used to calculate how many bits are
///< needed to identify tiles and polygons uniquely.
//
//// i hate this
int disjointPolyGroupCount = 0;
Expand Down Expand Up @@ -76,7 +78,7 @@ struct dtOffMeshConnection
/// @ingroup detour
class dtNavMesh
{
public:
public:
dtMeshTile** m_posLookup; ///< Tile hash lookup.
dtMeshTile* m_nextFree; ///< Freelist of tiles.
dtMeshTile* m_tiles; ///< List of tiles.
Expand Down
2 changes: 1 addition & 1 deletion primedev/toolframework/itoolentity.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class IClientTools // : public IBaseInterface
{
public:
public:
virtual void sub_1805E4960() = 0;
virtual void sub_1805E4B10() = 0;
virtual void sub_1805E4C50() = 0;
Expand Down

0 comments on commit 7e896e5

Please sign in to comment.