mirror of
https://github.com/kristoferssolo/maze-ascension.git
synced 2025-12-31 13:42:36 +00:00
22 lines
499 B
Rust
22 lines
499 B
Rust
use bevy::prelude::*;
|
|
|
|
#[derive(Debug, Clone, Reflect, Component)]
|
|
#[reflect(Component)]
|
|
pub struct FloorDisplay;
|
|
|
|
#[derive(Debug, Clone, Reflect, Component)]
|
|
#[reflect(Component)]
|
|
pub struct HighestFloorDisplay;
|
|
|
|
#[derive(Debug, Clone, Reflect, Component)]
|
|
#[reflect(Component)]
|
|
pub struct ScoreDisplay;
|
|
|
|
#[derive(Debug, Clone, Reflect, Component)]
|
|
#[reflect(Component)]
|
|
pub struct FloorTimerDisplay;
|
|
|
|
#[derive(Debug, Clone, Reflect, Component)]
|
|
#[reflect(Component)]
|
|
pub struct TotalTimerDisplay;
|