Created
October 25, 2015 22:45
-
-
Save AnnaBoro/adc40de542c2f023106f to your computer and use it in GitHub Desktop.
lesson4 - Frame9
This file contains hidden or 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 lesson4; | |
public class Tank { | |
String color; | |
int crew; | |
int maxSpeed; | |
Tank() { | |
} | |
Tank(String color, int crew, int maxSpeed) { | |
this.color = color; | |
this.crew = crew; | |
this.maxSpeed = maxSpeed; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment