mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-14 16:09:06 +07:00
33 lines
979 B
C++
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_;
|
|
};
|
|
}
|