cranpose-foundation 0.0.60

Modifiers, nodes, and foundation elements for Cranpose
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Fling gesture recogniser stub.

#[derive(Default, Debug, Clone, Copy, PartialEq)]
pub struct FlingGesture;

impl FlingGesture {
    pub fn new() -> Self {
        Self
    }

    pub fn reset(&mut self) {}
}