Coding Standard - Thoolium/holoBender GitHub Wiki

/** *

  • Title: Repetitive Training for Intelectual Disability using Microsoft Hololens RMIT Project
  • Author: Stephanie Batten, Johnathan Brady, Cai Ern Chew, Thomas Tonroe
  • Last Modified date: 19/08/2019
  • Requirements: C++ and Unity
  • #include // use <> for system includes
  • #include "EFGH" // use "" for including local files
  • using namespace <your_namespace>;
  • class MyClass // set types to start with capitals, aka Pascal Case naming convention
  • {
  • }
  • int main()
  • {
  • variableName = (); // set functions and variables start with lower case, use camelCase naming convention
  • const int CONST = 1; // set constants to all capital letters
  • return 0;
  • }
  • int myFunction() // set function to do something
  • {
  • }

*/

⚠️ **GitHub.com Fallback** ⚠️