Exemplo n.º 1
0
    public void CellDied()
    {
        //All cells that get cut out from the center of the organism, die as well

        OrganismHealthCheck.KillDeatachedCells(cells);

        SetTotalEnergyStorage();
        if (!OrganismHealthCheck.AreValidCellsAlive(cells))
        {
            Die();
        }
    }
Exemplo n.º 2
0
 public bool Alive()
 {
     return(OrganismHealthCheck.AreValidCellsAlive(cells));
 }