Advertisement
optimalcstrike

Untitled

May 9th, 2011
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. package com.cody.color;
  2.  
  3. import android.app.Activity;
  4. import android.widget.Button;
  5.  
  6.  
  7. public class GUIdriver extends Activity{
  8.  
  9.  
  10. CFG game = new CFG (6,6);
  11. public GUIdriver (CFG g1){
  12. game = g1;
  13. }
  14.  
  15.  
  16. public void UIupdate() {
  17.  
  18.  
  19. ButtonColorUpdate x0y0 = new ButtonColorUpdate(game, (Button)findViewById(R.id.x0y0), 0, 0);
  20. ButtonColorUpdate x1y0 = new ButtonColorUpdate(game, (Button)findViewById(R.id.x1y0), 1, 0);
  21.  
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement