This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.baphoware.prjhelloween.executions; | |
public class HelloWeenCardHand | |
{ | |
// deklaration und initialisierung der Klassenvariablen | |
private boolean isHuman = false; | |
private int[][] handStats = new int[5][4]; | |
private int[] handCards = new int[5]; | |
private int indexHand = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.baphoware.prjhelloween.listener; | |
import android.view.View; | |
import android.view.View.OnClickListener; | |
import com.baphoware.prjhelloween.R; | |
import com.baphoware.prjhelloween.activities.GameActivity; | |
import com.baphoware.prjhelloween.executions.HelloWeenCardHand; | |
public class GameActivityOnClickListener implements OnClickListener | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.baphoware.prjhelloween.listener; | |
import com.baphoware.prjhelloween.R; | |
import com.baphoware.prjhelloween.activities.GameActivity; | |
import com.baphoware.prjhelloween.activities.HelloWeenActivity; | |
import android.content.Intent; | |
import android.view.View; | |
import android.view.View.OnClickListener; | |
public class HelloWeenActivityOnClickListener implements OnClickListener |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.baphoware.prjhelloween.activities; | |
import com.baphoware.prjhelloween.R; | |
import com.baphoware.prjhelloween.R.layout; | |
import com.baphoware.prjhelloween.R.menu; | |
import com.baphoware.prjhelloween.listener.HelloWeenActivityOnClickListener; | |
import android.os.Bundle; | |
import android.app.Activity; | |
import android.view.Menu; | |
import android.widget.Button; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.baphoware.prjhelloween.activities; | |
import com.baphoware.prjhelloween.R; | |
import com.baphoware.prjhelloween.executions.HelloWeenCardHand; | |
import com.baphoware.prjhelloween.executions.HelloWeenTextViews; | |
import com.baphoware.prjhelloween.listener.GameActivityOnClickListener; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.provider.SyncStateContract.Constants; | |
import android.view.Menu; |