예제 #1
0
        public void ApplyOption(IGameOption option)
        {
            option.ImpactPlayer(this);

            NutrientSet Delta = new NutrientSet();

            option.AdjustNutrients(Delta);

            // Now Adjust Based on Targets.


            // Adjust Based on Deltas.
        }
예제 #2
0
 public void ImpactPlayer(Player p)
 {
     _parent.ImpactPlayer(p);
 }