Files
NazaraEngine/NazaraModuleTemplate/src/Nazara/ModuleName/ClassName.cpp
Lynix 20e8ef1436 Update module template
Former-commit-id: 49040d563978c2b565f55cab38c92cf7d0a8496a
2015-09-27 18:28:43 +02:00

26 lines
462 B
C++

// Copyright (C) YEAR AUTHORS
// This file is part of the "Nazara Engine - Module name"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/ModuleName/ClassName.hpp>
#include <Nazara/ModuleName/Debug.hpp>
namespace Nz
{
ClassName::ClassName() :
m_attribute(42)
{
}
int ClassName::GetAttribute() const
{
return m_attribute;
}
void ClassName::SetAttribute(int attribute)
{
m_attribute = attribute;
}
}