14 lines
891 B
Rust
14 lines
891 B
Rust
//Four Line Dropper Backend - A server enabling networked multiplayer for 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 oorandom::Rand32;
|
|
use rand::prelude::*;
|
|
|
|
pub fn get_seeded_random() -> Result<Rand32, String> {
|
|
Ok(Rand32::new(thread_rng().gen()))
|
|
}
|