Пример #1
0
 public Eggs(Type iType, Location iLocation)
 {
     itemType     = iType;
     itemLocation = iLocation;
     clean        = true;
     howCracked   = 0;
     Debug.Log("Spices Constructor Called");
 }
Пример #2
0
 public CrackedBreakingAnimation(Cracked cracked, float duration) : base(cracked, duration)
 {
 }
Пример #3
0
 public Eggs()
 {
     clean      = true;
     howCracked = 0;
     Debug.Log("Default Spices Constructor Called");
 }