Ejemplo n.º 1
0
        public GridBundle(int aPlayerIndex)
        {
            GridRandomizer = new Random(123 + "HejNicos".GetHashCode());

            Container = new GridContainer();
            Generator = new BlockGenerator();

            Container.SetGenerator(Generator);
            Generator.SetBundle(this);

            Behavior = new GridBehavior(Container, aPlayerIndex);
        }