mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-02-12 16:31:06 +00:00
29 lines
701 B
C++
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;
|
|
};
|
|
} |