windows-troll 0.1.0

Modular Windows prank library
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Per-module CLI implementations.
//!
//! Add a new file here for every new troll module, declare it below, and gate
//! it behind the same feature as its library module.

#[cfg(feature = "mouse-teleporter")]
pub mod mouse_teleporter;
#[cfg(feature = "window-hider")]
pub mod window_hider;
#[cfg(feature = "window-party")]
pub mod window_party;
#[cfg(feature = "window-wobbler")]
pub mod window_wobbler;