Skip to content

Commit f92d798

Browse files
committed
fix : rename B2BoardPhases to B2BroadPhases (#87(
1 parent 52d2e62 commit f92d798

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/Box2D.NET/B2Bodies.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using static Box2D.NET.B2Islands;
1818
using static Box2D.NET.B2Sensors;
1919
using static Box2D.NET.B2SolverSets;
20-
using static Box2D.NET.B2BoardPhases;
20+
using static Box2D.NET.B2BroadPhases;
2121
using static Box2D.NET.B2ArenaAllocators;
2222

2323
namespace Box2D.NET
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace Box2D.NET
2222
{
23-
public static class B2BoardPhases
23+
public static class B2BroadPhases
2424
{
2525
// Warning: writing to these globals significantly slows multithreading performance
2626
#if B2_SNOOP_PAIR_COUNTERS

src/Box2D.NET/B2Joints.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
using static Box2D.NET.B2SolverSets;
2323
using static Box2D.NET.B2ConstraintGraphs;
2424
using static Box2D.NET.B2Islands;
25-
using static Box2D.NET.B2BoardPhases;
25+
using static Box2D.NET.B2BroadPhases;
2626
using static Box2D.NET.B2Solvers;
2727
using static Box2D.NET.B2Ids;
2828

src/Box2D.NET/B2Shapes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using static Box2D.NET.B2Worlds;
1818
using static Box2D.NET.B2IdPools;
1919
using static Box2D.NET.B2Geometries;
20-
using static Box2D.NET.B2BoardPhases;
20+
using static Box2D.NET.B2BroadPhases;
2121
using static Box2D.NET.B2Distances;
2222

2323
namespace Box2D.NET

src/Box2D.NET/B2Solvers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
using static Box2D.NET.B2ContactSolvers;
2626
using static Box2D.NET.B2Timers;
2727
using static Box2D.NET.B2Islands;
28-
using static Box2D.NET.B2BoardPhases;
28+
using static Box2D.NET.B2BroadPhases;
2929
using static Box2D.NET.B2ArenaAllocators;
3030
using static Box2D.NET.B2ConstraintGraphs;
3131
using static Box2D.NET.B2CTZs;

src/Box2D.NET/B2Worlds.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
using static Box2D.NET.B2Joints;
2121
using static Box2D.NET.B2IdPools;
2222
using static Box2D.NET.B2ArenaAllocators;
23-
using static Box2D.NET.B2BoardPhases;
23+
using static Box2D.NET.B2BroadPhases;
2424
using static Box2D.NET.B2Distances;
2525
using static Box2D.NET.B2ConstraintGraphs;
2626
using static Box2D.NET.B2BitSets;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
using System;
66
using Box2D.NET.Test.Helpers;
77
using NUnit.Framework;
8-
using static Box2D.NET.B2BoardPhases;
8+
using static Box2D.NET.B2BroadPhases;
99
using static Box2D.NET.B2Tables;
1010
using static Box2D.NET.B2Atomics;
1111
using static Box2D.NET.B2Constants;
1212
using static Box2D.NET.B2Worlds;
1313

1414
namespace Box2D.NET.Test;
1515

16-
public class B2BoardPhasesTests
16+
public class B2BroadPhasesTests
1717
{
1818
[Test]
1919
public void Test_B2BoardPhases_B2_PROXY_ID_TYPE_KEY()

0 commit comments

Comments
 (0)