Older Documentation

From OpenMW Wiki
Revision as of 10:17, 8 August 2011 by Rhys (talk | contribs) (Created page with "__NOTOC__ This page contains a list of links to pages that are either outdated or superseded by other pages, but may still be occasionally useful. * Roadmap - a li...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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;
            }
    };
}