first commit
This commit is contained in:
17
Code/Card.java
Normal file
17
Code/Card.java
Normal file
@@ -0,0 +1,17 @@
|
||||
public class Card {
|
||||
|
||||
private int number;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param number
|
||||
*/
|
||||
public Card(int number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public int getNumber() {
|
||||
return this.number;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user