www.pudn.com > BlackCross.rar > gameObjectInit.java


class gameObjectInit 
{ 
    int type; 
    int imageNumber; 
    int imageFileNumber; 
    int numberOfAnimations; 
    creation creations[]; 
    int script; 
    int hits; 
    int hierarchy; 
    int clip; 
    int colSize[]; 
    int animType; 
    int animSpeed; 
    int speed; 
    int score; 
     
    public gameObjectInit() 
    { 
        creations = new creation[5]; 
        colSize = new int[2]; 
        for(int i = 0; i < 5; i++) 
            creations[i] = new creation(); 
 
    }   
}