wiki:ManualPage

Version 3 (modified by art, 17 years ago) (diff)

--

Note: Documentation is in progress !!!

Getting started

A following code snippet shows you how to start working with the engine. It will initialize the engine singleton and setup a basic logging capabilities.

#include <nrEngine/nrEngine.h>

void main()
{
    // initialize logging
    Engine::instance()->initializeLog("log/");
    Engine::sLog()->setLevel(Log::LL_WARNING);

    // initialize essential parts of the engine
    Engine::instance()->initializeEngine();


    ....


    // release the engine and free memory
    Engine::release();
}

How to use Kernel/Task? subsystem