// Copyright (C) 2015 Jérôme Leclercq // This file is part of the "Nazara Development Kit" // For conditions of distribution and use, see copyright notice in Prerequesites.hpp #include namespace Ndk { BaseComponent::~BaseComponent() = default; void BaseComponent::OnAttached() { } void BaseComponent::OnComponentAttached(BaseComponent& component) { NazaraUnused(component); } void BaseComponent::OnComponentDetached(BaseComponent& component) { NazaraUnused(component); } void BaseComponent::OnDetached() { } std::vector BaseComponent::s_entries; std::unordered_map BaseComponent::s_idToIndex; }