Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.cody.color;
- import android.app.Activity;
- import android.widget.Button;
- public class GUIdriver extends Activity{
- CFG game = new CFG (6,6);
- public GUIdriver (CFG g1){
- game = g1;
- }
- public void UIupdate() {
- ButtonColorUpdate x0y0 = new ButtonColorUpdate(game, (Button)findViewById(R.id.x0y0), 0, 0);
- ButtonColorUpdate x1y0 = new ButtonColorUpdate(game, (Button)findViewById(R.id.x1y0), 1, 0);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement