├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── b2dwm.c ├── b2dwm.h ├── config.def.h └── physics.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | .idea/ 3 | .vscode/ 4 | b2dwm 5 | *.o -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pta2002/b2dwm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pta2002/b2dwm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pta2002/b2dwm/HEAD/README.md -------------------------------------------------------------------------------- /b2dwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pta2002/b2dwm/HEAD/b2dwm.c -------------------------------------------------------------------------------- /b2dwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pta2002/b2dwm/HEAD/b2dwm.h -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pta2002/b2dwm/HEAD/config.def.h -------------------------------------------------------------------------------- /physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pta2002/b2dwm/HEAD/physics.cpp --------------------------------------------------------------------------------