No description
This repository has been archived on 2026-06-11. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
Find a file
2024-04-22 00:16:21 +02:00
client x 2024-04-22 00:16:21 +02:00
common x 2024-04-22 00:16:21 +02:00
server x 2024-04-22 00:16:21 +02:00
viewer x 2024-04-21 18:36:29 +02:00
.gitattributes fix typo 2024-03-02 02:10:20 +01:00
.gitignore here be dragons 2024-03-02 01:55:43 +01:00
Cargo.lock x 2024-04-22 00:16:21 +02:00
Cargo.toml x 2024-04-20 23:43:22 +02:00
demo.bin x 2024-04-22 00:16:21 +02:00
README.md here be dragons 2024-03-02 01:55:43 +01:00
rust-toolchain.toml here be dragons 2024-03-02 01:55:43 +01:00

Bevy Coop Building Game

Getting Started

cargo run --bin server
cargo run --bin client

Structure

  • server: The server is responsible for managing the game state, including the world simulation and player interactions.
  • client: The client is responsible for rendering the game world and handling player input.
  • common: The common crate contains code that is shared between the server and client, such as networking events and types.