14 lines
912 B
Rust
14 lines
912 B
Rust
//Four Line Dropper Frontend - A webapp that allows one to play a game of Four Line Dropper
|
|
//Copyright (C) 2022 Stephen Seo
|
|
//
|
|
//This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
//This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
//
|
|
//You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
use js_sys::Math::random;
|
|
use oorandom::Rand32;
|
|
|
|
pub fn get_seeded_random() -> Result<Rand32, String> {
|
|
Ok(Rand32::new((random() * u64::MAX as f64) as u64))
|
|
}
|