VisuTwin Canvas
C++ 3D Engine — Metal Backend
Loading...
Searching...
No Matches
buttonComponentSystem.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
5#include "buttonComponent.h"
8
9namespace visutwin::canvas
10{
11 class ButtonComponentSystem : public ComponentSystem<ButtonComponent, ButtonComponentData>
12 {
13 public:
15 };
16}
Central application orchestrator managing scenes, rendering, input, and resource loading.
Definition engine.h:38