1 unstable release
0.1.0 | Nov 25, 2024 |
---|
#1060 in Game dev
2KB
JellyBeanIdle
an incremental/idle game about collecting magical energy and condensing it.
crates
This project is divided into four crates that provide all the models, protocol, and binaries required by the game.
bins
Current bins are the TUI client in bin/jellybeanidle/
which produces binary jellybean
and the server in bin/jellybeanidle-server
which produces binary jbd
.
libs
Current libraries are separated by models (in lib/jellymodel/
) and protocol (in lib/jellyproto/
).
TODO
--WANTDB--
is denoted anywhere the database connection needs to be used instead of the current Arc<Mutex<Vec<Player>>>
.
--HANDLEPANIC--
denotes anywhere where a non-fatal panic could occur that would currently be fatal.