├── .gitignore ├── README.md ├── client ├── client.ml ├── client2.ml ├── dune └── mini.ml ├── dune-project ├── pixels.opam ├── rust-client-mini ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── rust-client ├── Cargo.lock ├── Cargo.toml ├── README.md ├── examples │ └── cc.rs └── src │ └── lib.rs └── server ├── display ├── display.ml └── dune ├── lib_graphics ├── dune └── pixels_graphics.ml ├── lib_network ├── dune └── pixels_network.ml ├── localnet ├── dune └── server.ml └── receiver ├── dune └── receiver.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/README.md -------------------------------------------------------------------------------- /client/client.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/client/client.ml -------------------------------------------------------------------------------- /client/client2.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/client/client2.ml -------------------------------------------------------------------------------- /client/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/client/dune -------------------------------------------------------------------------------- /client/mini.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/client/mini.ml -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 3.0) 2 | -------------------------------------------------------------------------------- /pixels.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/pixels.opam -------------------------------------------------------------------------------- /rust-client-mini/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/rust-client-mini/Cargo.lock -------------------------------------------------------------------------------- /rust-client-mini/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/rust-client-mini/Cargo.toml -------------------------------------------------------------------------------- /rust-client-mini/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/rust-client-mini/src/main.rs -------------------------------------------------------------------------------- /rust-client/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/rust-client/Cargo.lock -------------------------------------------------------------------------------- /rust-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/rust-client/Cargo.toml -------------------------------------------------------------------------------- /rust-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/rust-client/README.md -------------------------------------------------------------------------------- /rust-client/examples/cc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/rust-client/examples/cc.rs -------------------------------------------------------------------------------- /rust-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/rust-client/src/lib.rs -------------------------------------------------------------------------------- /server/display/display.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/display/display.ml -------------------------------------------------------------------------------- /server/display/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/display/dune -------------------------------------------------------------------------------- /server/lib_graphics/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/lib_graphics/dune -------------------------------------------------------------------------------- /server/lib_graphics/pixels_graphics.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/lib_graphics/pixels_graphics.ml -------------------------------------------------------------------------------- /server/lib_network/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/lib_network/dune -------------------------------------------------------------------------------- /server/lib_network/pixels_network.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/lib_network/pixels_network.ml -------------------------------------------------------------------------------- /server/localnet/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/localnet/dune -------------------------------------------------------------------------------- /server/localnet/server.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/localnet/server.ml -------------------------------------------------------------------------------- /server/receiver/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/receiver/dune -------------------------------------------------------------------------------- /server/receiver/receiver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armael/pixels/HEAD/server/receiver/receiver.ml --------------------------------------------------------------------------------