End Google Ads 201810 - BS.net 01 --> Dear experts,

I want to design a graphical editor using Irrlicht engine!
my software is divided in to two parts. one user interface and second is a window which Irrlicht uses to draw
on it!

i want to use separate threads to avoid from interfering of GUI in Irrlicht drawing loop! now i need to know which kind of thread i should use for each one!(Worker and UI Threads)

i have used MFC platform!



void Irrlicht_Main_Process()
{
while(true)
{
Draw anythings here
}
return true;
}


Best regards