VisuTwin Canvas
C++ 3D Engine — Metal Backend
Loading...
Searching...
No Matches
animationComponentSystem.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2025-2026 Arnis Lektauers
3#pragma once
4
8
9namespace visutwin::canvas
10{
11 class AnimationComponentSystem : public ComponentSystem<AnimationComponent, AnimationComponentData>
12 {
13 public:
15
17
18 private:
19 void onAnimationUpdate(float dt);
20 };
21}
Central application orchestrator managing scenes, rendering, input, and resource loading.
Definition engine.h:38