Older Documentation
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.
- Roadmap - a list of where you can help right now
- OpenMW Architecture - a high-level, concise overview of OpenMW subsystems (WIP)
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; } }; }