ducttape / ducttape-engine

Ducttape Engine - A universal game engine

Home Page:http://ducttape-dev.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change naming conventions

svenstaro opened this issue · comments

With our ever stronger Qt usage and now this we should also adopt the general trend of C++ naming conventions.

  • Make changes in code
  • Make changes in coding standards doc
  • Think about more changes:

lol() {
}

vs

lol()
{
}

etc.

Do you mean the same conventions as SFML 2.0 will use? camelCase for functions and public variables, getter without get/is prefix and m_prefix for class members?

Sfml still hasn't received the new changes.

This is 50%.