File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,43 @@ In v2.4.x:
31
31
- [ Ported C# Box2DX - Ihar Kalasouski] ( https://code.google.com/archive/p/box2dx/ )
32
32
- [ C++ Box2D Original - Erin Catto] ( https://github.com/erincatto/box2d )
33
33
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
+
34
71
## Contributing
35
72
36
73
Anyone who wants to contribute to this repository:
You can’t perform that action at this time.
0 commit comments