예제 #1
0
 public Vegetable(Type iType, Location iLocation)
 {
     itemType     = iType;
     itemLocation = iLocation;
     movable      = true;
     choppable    = true;
     chopLevel    = Chopped.full;
     Debug.Log("Vegetable Constructor Called");
 }
예제 #2
0
 public Meat(Type iType, Location iLocation)
 {
     itemType     = iType;
     itemLocation = iLocation;
     movable      = true;
     choppable    = true;
     chopLevel    = Chopped.full;
     frozen       = false;
     Debug.Log("Meat Constructor Called");
 }
예제 #3
0
 public Meat()
 {
     chopLevel = Chopped.full;
     frozen    = false;
     Debug.Log("Default Meat Constructor Called");
 }
예제 #4
0
 public Vegetable()
 {
     chopLevel = Chopped.full;
     Debug.Log("Default Vegetable Constructor Called");
 }