Advertisement
TankorSmash

Untitled

Aug 5th, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace TammyFranklin
  7. {
  8.    
  9.     class  FoodType
  10.     {
  11.         public int nurtientsGiven = 100;
  12.         public void FoodType()
  13.         {        
  14.        
  15.         }
  16.  
  17.     }
  18.  
  19.     class FoodMeat : FoodType
  20.     {
  21.         //access the nutrientsGiven here
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement