├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── bind.rs ├── media └── showcase1.gif └── src ├── either.rs ├── lib.rs └── target.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsEthra/egui-bind/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsEthra/egui-bind/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsEthra/egui-bind/HEAD/README.md -------------------------------------------------------------------------------- /examples/bind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsEthra/egui-bind/HEAD/examples/bind.rs -------------------------------------------------------------------------------- /media/showcase1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsEthra/egui-bind/HEAD/media/showcase1.gif -------------------------------------------------------------------------------- /src/either.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsEthra/egui-bind/HEAD/src/either.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsEthra/egui-bind/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsEthra/egui-bind/HEAD/src/target.rs --------------------------------------------------------------------------------