├── .gitignore ├── ByfronTester ├── ByfronTester.cpp ├── ByfronTester.vcxproj └── ByfronTester.vcxproj.filters ├── README.MD ├── not-byfron.sln └── not-byfron ├── dllmain.cpp ├── not-byfron.vcxproj ├── not-byfron.vcxproj.filters ├── pch.cpp └── pch.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/.gitignore -------------------------------------------------------------------------------- /ByfronTester/ByfronTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/ByfronTester/ByfronTester.cpp -------------------------------------------------------------------------------- /ByfronTester/ByfronTester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/ByfronTester/ByfronTester.vcxproj -------------------------------------------------------------------------------- /ByfronTester/ByfronTester.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/ByfronTester/ByfronTester.vcxproj.filters -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/README.MD -------------------------------------------------------------------------------- /not-byfron.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/not-byfron.sln -------------------------------------------------------------------------------- /not-byfron/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/not-byfron/dllmain.cpp -------------------------------------------------------------------------------- /not-byfron/not-byfron.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/not-byfron/not-byfron.vcxproj -------------------------------------------------------------------------------- /not-byfron/not-byfron.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/not-byfron/not-byfron.vcxproj.filters -------------------------------------------------------------------------------- /not-byfron/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /not-byfron/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/not-byfron/HEAD/not-byfron/pch.h --------------------------------------------------------------------------------