1
edit
Changes
→Conventions
==== Conventions ====
* When creating header files remember to protect them by using ifndef.
<pre>
#pragma once
#ifndef __XX_FILENAME_H__ //where XX is your initials and FILENAME is the name of the file
#define __XX_FILENAME_H__
//codehere
#endif
</pre>
* Always always ''always'' simplify code so it is easily readable! E.G.