VC++.NET Help
VC++.NET Help
Is there a tutorials where I can set up a project in VC++.Net 2003 for IRRLICHT?...
Re: VC++.NET Help
Make a new Win32 Project, on more options click "Empty Project". Make a new file, like main.cpp, then just putAnonymous wrote:Is there a tutorials where I can set up a project in VC++.Net 2003 for IRRLICHT?...
Code: Select all
#include <irrlicht.h>
Code: Select all
#pragma comment(lib, "Irrlicht.lib")
And then you are rocking.