Mercurial > touhou
diff formats/src/th06/t6rp.rs @ 795:2d60a14f4816 default tip
python: Rewrite the main entrypoint in Rust
This lets us progressively replace Python modules with Rust ones.
Currently missing features include:
- Saving replays
- Networking code for cooperative mode
- Reading a configuration file for options
- Maybe more.
But the base game is working, so yay!
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Tue, 02 Jun 2026 19:06:16 +0200 |
| parents | 8c2ef2d503c9 |
| children |
line wrap: on
line diff
--- a/formats/src/th06/t6rp.rs Tue Jun 02 16:39:21 2026 +0200 +++ b/formats/src/th06/t6rp.rs Tue Jun 02 19:06:16 2026 +0200 @@ -38,7 +38,9 @@ /// The hidden difficulty at the beginning of this level. pub difficulty: u8, - unknown: u32, + /// XXX + // TODO: Make non-pub. + pub unknown: u32, /// The list of keys pressed during this level. pub keys: Vec<(u32, u16, u16)>,
