public Randomizer(int seed, IRomLocations romLocations, RandomizerLog log)
 {
     random            = new SeedRandom(seed);
     this.romLocations = romLocations;
     this.seed         = seed;
     this.log          = log;
 }
        private bool romRegion;         // US False, JP True

        public Randomizer(byte[] rom, bool region, int seed, IRomLocations romLocations, RandomizerLog log)
        {
            random            = new SeedRandom(seed);
            this.romLocations = romLocations;
            this.seed         = seed;
            this.log          = log;
            romRegion         = region;
        }