Mercurial > touhou
comparison src/util/mod.rs @ 646:7d92730bf543
Add a PRNG and use it for anm0 instruction 16.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sat, 03 Aug 2019 23:30:15 +0200 |
parents | 01849ffd0180 |
children |
comparison
equal
deleted
inserted
replaced
645:7bde50132735 | 646:7d92730bf543 |
---|---|
1 //! Module containing a bunch of helper modules. | 1 //! Module containing a bunch of helper modules. |
2 | 2 |
3 pub mod bitstream; | 3 pub mod bitstream; |
4 pub mod lzss; | 4 pub mod lzss; |
5 pub mod math; | 5 pub mod math; |
6 pub mod prng; | |
6 | 7 |
7 #[cfg(test)] | 8 #[cfg(test)] |
8 use std::io; | 9 use std::io; |
9 | 10 |
10 #[cfg(test)] | 11 #[cfg(test)] |