Advertisement
CMatchelo

Untitled

Dec 13th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Equipe
  2. {
  3. String nome;
  4. Boolean cabeca;
  5. public Equipe(String nome, Boolean cabeca) {
  6. super();
  7. this.nome = nome;
  8. this.cabeca = cabeca;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement