public static int Random(int min, int max) { return(GlobalRandomInst.Next() % max + min); }
public static bool RandomBool() { return(GlobalRandomInst.Next() % 2 == 0); }