Files
Bomberman/sources/System/Shaders/ShaderModelSystem.hpp
2021-06-16 01:23:59 +02:00

29 lines
701 B
C++

//
// Created by cbihan on 15/06/2021.
//
#pragma once
#include "ShaderSystem.hpp"
#include "System/System.hpp"
#include "Wal.hpp"
namespace BBM
{
class ShaderModelSystem : public WAL::System<ShaderComponentModel>
{
public:
//! @inherit
void onUpdate(WAL::ViewEntity<ShaderComponentModel> &entity, std::chrono::nanoseconds dtime) override;
//! @brief ctor
explicit ShaderModelSystem(WAL::Wal &wal);
//! @brief Default copy ctor
ShaderModelSystem(const ShaderModelSystem &) = default;
//! @brief Default dtor
~ShaderModelSystem() override = default;
//! @brief A render screen system can't be assigned.
ShaderModelSystem &operator=(const ShaderModelSystem &) = delete;
};
}