From ed10f9503b8c118f2d77bca51b0223b4268f3baa Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Wed, 14 Feb 2024 20:00:07 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20effects=5Fsystem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- program/effects_system.cpp | 0 program/effects_system.h | 15 +++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 program/effects_system.cpp create mode 100644 program/effects_system.h diff --git a/program/effects_system.cpp b/program/effects_system.cpp new file mode 100644 index 0000000..e69de29 diff --git a/program/effects_system.h b/program/effects_system.h new file mode 100644 index 0000000..f1895fb --- /dev/null +++ b/program/effects_system.h @@ -0,0 +1,15 @@ +// Система эффектов - управляет специальными визуальными и аудиоэффектами +class EffectsSystem { +public: + // Добавляет новый эффект + void addEffect(/* параметры эффекта */); + + // Воспроизводит эффект + void playEffect(int effectId); + + // Останавливает эффект + void stopEffect(int effectId); + + // Обновляет активные эффекты + void update(float deltaTime); +};