├── .gitignore ├── Args.c ├── Config.h ├── Examples ├── Black_Red_A.png ├── DefaultBackBlue.png ├── Empty_Walls.png ├── PinkWithI.png ├── Small window shot.png └── walledinvid.gif ├── LICENSE ├── Makefile ├── README.md ├── Run.c ├── Run.h ├── RunMainMulti.c └── RunTest.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/.gitignore -------------------------------------------------------------------------------- /Args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Args.c -------------------------------------------------------------------------------- /Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Config.h -------------------------------------------------------------------------------- /Examples/Black_Red_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Examples/Black_Red_A.png -------------------------------------------------------------------------------- /Examples/DefaultBackBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Examples/DefaultBackBlue.png -------------------------------------------------------------------------------- /Examples/Empty_Walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Examples/Empty_Walls.png -------------------------------------------------------------------------------- /Examples/PinkWithI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Examples/PinkWithI.png -------------------------------------------------------------------------------- /Examples/Small window shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Examples/Small window shot.png -------------------------------------------------------------------------------- /Examples/walledinvid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Examples/walledinvid.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/README.md -------------------------------------------------------------------------------- /Run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Run.c -------------------------------------------------------------------------------- /Run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/Run.h -------------------------------------------------------------------------------- /RunMainMulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/RunMainMulti.c -------------------------------------------------------------------------------- /RunTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrinp/WalledIn/HEAD/RunTest.c --------------------------------------------------------------------------------