Files
enduro2d/headers/enduro2d/high/systems/script_system.hpp
2019-10-22 03:20:20 +07:00

33 lines
979 B
C++

/*******************************************************************************
* This file is part of the "Enduro2D"
* For conditions of distribution and use, see copyright notice in LICENSE.md
* Copyright (C) 2018-2019, by Matvey Cherevko (blackmatov@gmail.com)
******************************************************************************/
#pragma once
#include "_systems.hpp"
namespace e2d
{
class script_system final
: public ecs::system<
systems::update_event,
ecs::after<systems::frame_finalize_event>> {
public:
script_system();
~script_system() noexcept;
void process(
ecs::registry& owner,
const systems::update_event& event) override;
void process(
ecs::registry& owner,
const ecs::after<systems::frame_finalize_event>& event) override;
private:
class internal_state;
std::unique_ptr<internal_state> state_;
};
}