├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── README.md ├── net_client.rs └── net_server.rs ├── rustfmt.toml └── src ├── common.rs ├── event.rs ├── lib.rs ├── listener.rs ├── listeners.rs ├── socket.rs ├── sockets.rs └── system.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/net_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/examples/net_client.rs -------------------------------------------------------------------------------- /examples/net_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/examples/net_server.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/src/common.rs -------------------------------------------------------------------------------- /src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/src/event.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/src/listener.rs -------------------------------------------------------------------------------- /src/listeners.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/src/listeners.rs -------------------------------------------------------------------------------- /src/socket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/src/socket.rs -------------------------------------------------------------------------------- /src/sockets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/src/sockets.rs -------------------------------------------------------------------------------- /src/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x22fe/bevy_prototype_simple_net/HEAD/src/system.rs --------------------------------------------------------------------------------