Update module template

Former-commit-id: 49040d563978c2b565f55cab38c92cf7d0a8496a
This commit is contained in:
Lynix
2015-09-27 18:28:43 +02:00
parent 24e5141cbe
commit 20e8ef1436
7 changed files with 102 additions and 104 deletions

View File

@@ -9,17 +9,20 @@
#include <Nazara/Prerequesites.hpp>
class NAZARA_API NzClassName
namespace Nz
{
public:
NzClassName();
class NAZARA_MODULENAME_API API ClassName
{
public:
ClassName();
int GetAttribute() const;
int GetAttribute() const;
void SetAttribute(int attribute);
void SetAttribute(int attribute);
private:
int m_attribute;
};
private:
int m_attribute;
};
}
#endif // NAZARA_CLASSNAME_HPP