001package squidpony.squidmath;
002
003/**
004 * Simply groups the two interfaces {@link IRNG} and {@link StatefulRandomness} so some implementations of IRNG can have
005 * their states read from and written to.
006 * <br>
007 * Created by Tommy Ettinger on 11/25/2018.
008 */
009public interface IStatefulRNG extends IRNG, StatefulRandomness {
010}