Advertisement
Guest User

Animal Class

a guest
Jul 14th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package
  2. {
  3.     public class Animal extends BubbleBase
  4.     {
  5.         public var _petName:String;
  6.        
  7.         public function Animal()
  8.         {
  9.             super();
  10.         }
  11.        
  12.         public function eat():void {
  13.            
  14.         }
  15.        
  16.         public function fun():void {
  17.            
  18.         }
  19.        
  20.         public function rest():void {
  21.            
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement