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

@@ -5,17 +5,21 @@
#include <Nazara/ModuleName/ClassName.hpp>
#include <Nazara/ModuleName/Debug.hpp>
NzClassName::NzClassName() :
m_attribute(42)
namespace Nz
{
ClassName::ClassName() :
m_attribute(42)
{
}
int ClassName::GetAttribute() const
{
return m_attribute;
}
void ClassName::SetAttribute(int attribute)
{
m_attribute = attribute;
}
}
int NzClassName::GetAttribute() const
{
return m_attribute;
}
void NzClassName::SetAttribute(int attribute)
{
m_attribute = attribute;
}