Skip to content

Instantly share code, notes, and snippets.

@AnnaBoro
Created October 25, 2015 22:45
Show Gist options
  • Save AnnaBoro/adc40de542c2f023106f to your computer and use it in GitHub Desktop.
Save AnnaBoro/adc40de542c2f023106f to your computer and use it in GitHub Desktop.
lesson4 - Frame9
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