Skip to content

Commit 5e53436

Browse files
authored
Added folder structure
1 parent 7047606 commit 5e53436

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,43 @@ In v2.4.x:
3131
- [Ported C# Box2DX - Ihar Kalasouski](https://code.google.com/archive/p/box2dx/)
3232
- [C++ Box2D Original - Erin Catto](https://github.com/erincatto/box2d)
3333

34+
## Folder Structure
35+
36+
```
37+
├── docs
38+
│   └── images
39+
├── examples
40+
│   ├── Box2D.Window
41+
│   ├── Box2D.WindowTests
42+
│   └── Box2D.WorldTests
43+
└── src
44+
└── box2dx
45+
├── Box2D.NetStandard
46+
│   ├── Collision
47+
│   │   ├── Colliders
48+
│   │   └── Shapes
49+
│   ├── Common
50+
│   ├── Dynamics
51+
│   │   ├── Bodies
52+
│   │   ├── Contacts
53+
│   │   ├── Fixtures
54+
│   │   ├── Joints
55+
│   │   │   ├── Distance
56+
│   │   │   ├── Friction
57+
│   │   │   ├── Gear
58+
│   │   │   ├── Motor
59+
│   │   │   ├── Mouse
60+
│   │   │   ├── Prismatic
61+
│   │   │   ├── Pulley
62+
│   │   │   ├── Revolute
63+
│   │   │   ├── Weld
64+
│   │   │   └── Wheel
65+
│   │   └── World
66+
│   │   └── Callbacks
67+
└── Box2D.NetStandard.UnitTests
68+
69+
```
70+
3471
## Contributing
3572

3673
Anyone who wants to contribute to this repository:

0 commit comments

Comments
 (0)