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
| <div id="left" class="sidebar flex-center left collapsed"> | |
| <div class="sidebar-content rounded-rect flex-center"> | |
| <div id="filters"> | |
| <h2>Categories</h2> | |
| <p>Number of locations: <span id="locations-count"></span></p> | |
| <label class="cave-structures"><input type="checkbox" name="category" value="Cave Structures" checked > Cave Structures</label> |
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
| public class Avançado extends Jogador { | |
| //construtor por omissão | |
| public Avançado(){ | |
| super(); | |
| } | |
| //construtor parametrizado | |
| public Avançado(String nome,boolean titular,int vel,int res, | |
| int des,int imp,int cab,int rem,int passe){ | |
| super(nome,titular,vel,res,des,imp,cab,rem,passe); |