windows-troll 0.1.0

Modular Windows prank library
1
2
3
4
5
6
7
8
9
10
11
12
//! The collection of troll modules.
//!
//! Each module is gated behind its own Cargo feature flag.

#[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;