An open API service indexing awesome lists of open source software.

https://github.com/zesterer/bitwise-examples

Example games that persist just 8 bytes of state between frames
https://github.com/zesterer/bitwise-examples

Last synced: 9 months ago
JSON representation

Example games that persist just 8 bytes of state between frames

Awesome Lists containing this project

README

          

# [The Bitwise Challenge: Examples](https://github.com/zesterer/the-bitwise-challenge)

Included in this repository are examples of games that use just 8 bytes of memory to store state between frames.

## Bitwise Snake

```
cargo run --example snake
```

This very shoddy implementation of the infamous Snake contains all of the basic elements: movement, foot to eat, a growing body, and the ability to collide with your own tail.