├── .github ├── README.md └── gfx │ └── image.png ├── .gitignore ├── .metadata ├── Microsoft.Internal.winmd ├── generate.proj ├── internal.h ├── internal.manual.cs ├── main.cpp └── options.rsp ├── Cargo.lock ├── Cargo.toml ├── LICENSE └── src ├── bindings.rs └── main.rs /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/gfx/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/.github/gfx/image.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | target 4 | -------------------------------------------------------------------------------- /.metadata/Microsoft.Internal.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/.metadata/Microsoft.Internal.winmd -------------------------------------------------------------------------------- /.metadata/generate.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/.metadata/generate.proj -------------------------------------------------------------------------------- /.metadata/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/.metadata/internal.h -------------------------------------------------------------------------------- /.metadata/internal.manual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/.metadata/internal.manual.cs -------------------------------------------------------------------------------- /.metadata/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/.metadata/main.cpp -------------------------------------------------------------------------------- /.metadata/options.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/.metadata/options.rsp -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/LICENSE -------------------------------------------------------------------------------- /src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/src/bindings.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/physpanel/HEAD/src/main.rs --------------------------------------------------------------------------------