Exemple #1
0
        public LevelPlanCreator(SongElements songElements)
        {
            LevelPlan = new LevelPlan();

            this.songElements = songElements;

            distributionManager = new DistributionManager();

            reservedTimeRanges = new List <Tuple <float, float> >();
        }
        public LevelPlanCreator(Synchronisations synchronisations)
        {
            this.synchronisations = synchronisations;

            distributionManager = new DistributionManager(GetRandomSeed(synchronisations));
        }