Advertisement
Guest User

Untitled

a guest
Jul 30th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package maxim.android02;
  2.  
  3. import android.os.Bundle;
  4. import android.util.Log;
  5.  
  6. public class Activity_Level extends Activity_Main{
  7.  
  8.       public void onCreate(Bundle savedInstanceState) {
  9.             super.onCreate(savedInstanceState);
  10.             Log.d("oncreate", "activity_level");
  11.      
  12.       }
  13.    
  14.      
  15.       public void setGameView()
  16.       {
  17.           view=new Level(this);
  18.       }
  19.      
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement