Older Documentation

From OpenMW Wiki
Jump to navigation Jump to search

This page contains a list of links to pages that are either outdated or superseded by other pages, but may still be occasionally useful.

Developer Reference (Old)

This page is a collection of assorted documentation that developers may find useful.

Code Guideline

Example of a function :

namespace MyNs
{
    class MyClass
    {
        private:
            int mIsLikeThis;
        public:
            float& myCalcFunction (float p1, float p2)
            {
                myClass->doSomething (p1, p2);
 
                p1  = p2;
            }
    };
}