All Downloads are FREE. Search and download functionalities are using the official Maven repository.

model.unimplementedBiology.Cerebrum Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package model.unimplementedBiology;

import model.MARK_II.Neocortex;

/**
 * @author Quinn Liu ([email protected])
 * @version June 5, 2013
 */
public class Cerebrum {
    private CerebralCortex cerebralCortex;
    // private BasalGanglia basalGanglia;
    // private Hippocampus hippocampus;
    // private Amygdala amygdala;

    public Cerebrum(Neocortex neocortex) {
        this.cerebralCortex = new CerebralCortex(neocortex);
        // this.basalGanglia = null;
        // this.hippocampus = null;
        // this.amygdala = null;
    }

    public CerebralCortex getCerebralCortex() {
        return this.cerebralCortex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy