It tells me that it cannot locate Debug\Powder.exe and I don't know how to find it or what it is. I tried to take the actual TPT exe file and copy it into the Debug folder and rename it Powder.exe but it dissapears. What's going on?
@anadnese It looks like you've set your SubSystem to Windows as opposed to Console. Which by default expects a entry point by the name of WinMain, which I don't believe powder-toy has. You need to either A) Set the subsystem to Console (Which will cause an annoying console window to pop up each time you start the app) or B) Set the entry point to main. Which can be done under the linker (Properties for Project > Linker > Advanced > Entry Point).