Core: Add StateMachine

Backported from legacy Nazara
This commit is contained in:
SirLynix
2023-05-07 22:42:54 +02:00
parent 24e546a808
commit c69397707e
5 changed files with 318 additions and 0 deletions

17
src/Nazara/Core/State.cpp Normal file
View File

@@ -0,0 +1,17 @@
// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - Core module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Core/State.hpp>
#include <Nazara/Core/Debug.hpp>
namespace Nz
{
/*!
* \ingroup Core
* \class Nz::State
* \brief Core class that represents a state of your application
*/
State::~State() = default;
}