No description
Find a file
2025-03-02 08:52:54 +01:00
assets/textures Added jpeg support 2025-01-30 18:59:19 +01:00
helpers Moves connected clients to the ECS and resync them in batches 2025-02-05 23:01:22 +01:00
src Added puzzle spawned event 2025-03-02 08:52:54 +01:00
.gitignore initial commit 2025-01-30 18:36:33 +01:00
Cargo.lock Create puzzles from images that are not game assets (#2) 2025-02-07 18:18:43 +01:00
Cargo.toml Create puzzles from images that are not game assets (#2) 2025-02-07 18:18:43 +01:00
readme.md Makes rustfmt work on nixos 2025-02-07 09:02:30 +01:00
rust-toolchain.toml Makes rustfmt work on nixos 2025-02-07 09:02:30 +01:00
rustfmt.toml Adds and applies rust fmt rules 2025-02-06 18:34:13 +01:00
shell.nix Makes rustfmt work on nixos 2025-02-07 09:02:30 +01:00

A Puzzle Game

This project is in very early development.

Code Guidelines

rustfmt

While the project is compiled with stable rust, ituses the nightly version of rustfmt to format the code. You mighht need to install it:

rustup install nightly

When installed, use it like this:

# Check for problems
cargo +nightly fmt --check

# Applied suggested changes
cargo +nightly fmt