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
//! Tap gesture recogniser stub.

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

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

    pub fn reset(&mut self) {}
}