C
Qt Quick Ultralite Motorcycle Cluster Demo
// Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial #ifndef STATEID_H #define STATEID_H namespace Simulation { enum StateId { State_Idle = -1, State_Intro, State_NormalDrive, State_End, NUM_STATES }; enum Layer { Layer_Gauges, NUM_LAYERS }; } // namespace Simulation #endif // STATEID_H