desk-physics 0.0.0

The application platform for your cyberpunk desk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use bevy_ecs::prelude::Component;

#[derive(Component, Clone, Debug, PartialEq)]
pub enum DragState {
    Dragging,
    NotDragging,
}

impl Default for DragState {
    fn default() -> Self {
        DragState::NotDragging
    }
}