diff --git a/src/dnd/mod.rs b/src/dnd/mod.rs new file mode 100644 index 0000000..3df6524 --- /dev/null +++ b/src/dnd/mod.rs @@ -0,0 +1,14 @@ +use crate::Clipboard; + +impl Clipboard { + /// Set up DnD operations for the Clipboard + pub fn init_dnd() {} + + /// Start a DnD operation on the given surface with some data + pub fn start_dnd() {} + + /// End the current DnD operation, if there is one + pub fn end_dnd() {} + + +} \ No newline at end of file