ScoreValueComponent.ixx File
Template component for storing score values on entities. More...
Included Headers
#include <type_traits>
#include <helios.engine.mechanics.scoring.types.Score>
Namespaces Index
| namespace | helios |
| namespace | engine |
|
Main engine module aggregating core infrastructure and game systems. More... | |
| namespace | mechanics |
|
High-level gameplay systems and components for game logic. More... | |
| namespace | scoring |
|
Score management and tracking system for game mechanics. More... | |
| namespace | components |
|
Score-related ECS components. More... | |
Classes Index
| class | ScoreValueComponent<T> |
|
Template component that stores a score value of a specific type. More... | |
Description
Template component for storing score values on entities.
File Listing
The file content with the documentation metadata removed is:
15export namespace helios::engine::mechanics::scoring::components {
28 class ScoreValueComponent {
75 explicit ScoreValueComponent(Args&&... args) : score_(std::forward<Args>(args)...) {}
82 ScoreValueComponent(const ScoreValueComponent& other) : score_(other.score_) {}
84 ScoreValueComponent& operator=(const ScoreValueComponent& other) = default;
86 ScoreValueComponent(ScoreValueComponent&& other) noexcept = default;
87 ScoreValueComponent& operator=(ScoreValueComponent&& other) noexcept = default;
Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.15.0.